diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml new file mode 100644 index 00000000..07633257 --- /dev/null +++ b/.github/workflows/release.yaml @@ -0,0 +1,35 @@ +name: releaser + +on: + push: + tags: + - 'v*' +jobs: + upload-release: + runs-on: ubuntu-latest + steps: + - name: Set up Go 1.14 + uses: actions/setup-go@v1 + with: + go-version: 1.14 + id: go + + - name: Checkout code into the Go module directory + uses: actions/checkout@v2 + + - uses: actions/cache@v1 + with: + path: ~/go/pkg/mod + key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} + restore-keys: | + ${{ runner.os }}-go- + + - name: Build + run: make -f builder.Makefile cross + + - uses: ncipollo/release-action@v1 + with: + artifacts: "bin/*" + prerelease: true + token: ${{ secrets.GITHUB_TOKEN }} +