-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
related #31 Not using the resolve keyword because it's not resolved until a tag has been cut.
- Loading branch information
Balazs Nadasdi
authored
May 1, 2021
1 parent
04dd36f
commit 4b051ed
Showing
2 changed files
with
9 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,15 +7,21 @@ jobs: | |
steps: | ||
- uses: actions/checkout@master | ||
- name: release linux/amd64 | ||
uses: ngs/[email protected].1 | ||
uses: ngs/[email protected].2 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
GOARCH: amd64 | ||
GOOS: linux | ||
CGO_ENABLED: 0 | ||
- name: release darwin/amd64 | ||
uses: ngs/[email protected].1 | ||
uses: ngs/[email protected].2 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
GOARCH: amd64 | ||
GOOS: darwin | ||
- name: release windows/amd64 | ||
uses: ngs/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
GOARCH: amd64 | ||
GOOS: windows |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#!/bin/bash | ||
|
||
ARCH=(386 amd64) | ||
ARCH=(amd64) | ||
OS=(darwin linux windows) | ||
TARGET_DIR=bin | ||
|
||
|