Skip to content

Commit

Permalink
github actions: actions/checkout@v1
Browse files Browse the repository at this point in the history
  • Loading branch information
ak1ra24 committed Jan 29, 2020
1 parent da915c1 commit 5d66b55
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
id: go

- name: Check out code into the Go module directory
uses: actions/checkout@master
uses: actions/checkout@v1

- name: Build
env:
Expand All @@ -31,5 +31,5 @@ jobs:
echo "DEBUG:" $TAGNAME
export CHANGELOG=$($GOPATH/bin/ghch -F markdown --latest)
echo "DEBUG:" $CHANGELOG
$GOPATH/bin/goxz -pv v${TAGNAME} -os=linux -arch=amd64 -d ./dist/v${TAGNAME}
$GOPATH/bin/ghr -n v${TAGNAME} -b ${CHANGELOG} -draft v${TAGNAME} ./dist/v${TAGNAME}
$GOPATH/bin/goxz -pv v$TAGNAME -os=linux -arch=amd64 -d ./dist/v$TAGNAME
$GOPATH/bin/ghr -n v$TAGNAME -b $CHANGELOG -draft v$TAGNAME ./dist/v$TAGNAME

0 comments on commit 5d66b55

Please sign in to comment.