Skip to content

Commit

Permalink
use newer github action
Browse files Browse the repository at this point in the history
  • Loading branch information
yitsushi committed May 1, 2021
1 parent e9fcc85 commit 59117f6
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ jobs:
name: Release linux/amd64
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/checkout@v2
- name: release linux/amd64
uses: ngs/go-release.action@v1.0.2
env:
uses: wangyoucao577/go-release-action@v1.17
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GOARCH: amd64
GOOS: linux
Expand All @@ -17,21 +17,21 @@ jobs:
name: Release windows/amd64
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/checkout@v2
- name: release windows/amd64
uses: ngs/go-release.action@v1.0.2
env:
uses: wangyoucao577/go-release-action@v1.17
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GOARCH: amd64
GOOS: windows
darwin:
name: Release darwin/amd64
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/checkout@v2
- name: release darwin/amd64
uses: ngs/go-release.action@v1.0.2
env:
uses: wangyoucao577/go-release-action@v1.17
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GOARCH: amd64
GOOS: darwin

0 comments on commit 59117f6

Please sign in to comment.