Skip to content

Merge pull request #23 from carmelopellegrino/main #126

Merge pull request #23 from carmelopellegrino/main

Merge pull request #23 from carmelopellegrino/main #126

Workflow file for this run

name: publish
on:
push:
tags:
- "*"
pull_request:
jobs:
publish:
timeout-minutes: 10
strategy:
matrix:
go-version: [1.17.x]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@master
with:
fetch-depth: 1
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Make all
run: make
timeout-minutes: 6
- name: Upload release binaries
uses: alexellis/[email protected]
env:
GITHUB_TOKEN: ${{ github.token }}
with:
asset_paths: '["./sts-wire*"]'
if: github.event_name != 'pull_request'