diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 01c8b2e..81db7d6 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -1,3 +1,5 @@ +name: Release + on: release: types: [created] @@ -9,10 +11,12 @@ jobs: strategy: matrix: goos: [linux, darwin] + goarch: [amd64] steps: - uses: actions/checkout@v2 - uses: wangyoucao577/go-release-action@v1.16 with: github_token: ${{ secrets.GITHUB_TOKEN }} goos: ${{ matrix.goos }} + goarch: ${{ matrix.goarch }} goversion: "1.13"