Skip to content

Commit

Permalink
Merge pull request #173 from sue445/fix_release_error
Browse files Browse the repository at this point in the history
Fixed. can only use path@version syntax with 'go get'
  • Loading branch information
sue445 committed Jan 30, 2022
2 parents 1fd6752 + ed4ce21 commit a6769b1
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -229,6 +229,12 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: ${{ env.GO_VERSION }}
id: go

- name: Download artifacts from darwin-amd64
uses: actions/download-artifact@v1
with:
Expand Down Expand Up @@ -364,7 +370,7 @@ jobs:
GHR_OPTIONS="${GHR_OPTIONS} -prerelease"
fi
$GOPATH/bin/ghr -u ${USERNAME} -r ${REPO} -n ${TAGNAME} -b "Release ${TAGNAME}" ${GHR_OPTIONS} ${TAGNAME} bin/
ghr -u ${USERNAME} -r ${REPO} -n ${TAGNAME} -b "Release ${TAGNAME}" ${GHR_OPTIONS} ${TAGNAME} bin/
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.4.0
v0.4.0.beta2

0 comments on commit a6769b1

Please sign in to comment.