From 4d71a969d0bb506a718de2ad35a4f1369052dc17 Mon Sep 17 00:00:00 2001 From: Douglas Mendes Date: Tue, 23 Feb 2021 18:40:18 -0500 Subject: [PATCH] Change trigger when the user creates a release on github --- .github/workflows/go.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 27e4688..89092e2 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -1,9 +1,8 @@ name: Release on: - push: - tags: - - 'v*' + release: + types: [created] jobs: release-linux-amd64: @@ -12,7 +11,7 @@ jobs: strategy: matrix: goos: [ linux, windows, darwin ] - goarch: [ "386", amd64 ] + goarch: [ amd64 ] steps: - uses: actions/checkout@v2 - uses: wangyoucao577/go-release-action@v1.14