Skip to content

Commit

Permalink
cicd: fix release failure
Browse files Browse the repository at this point in the history
copy pasta of cicd jobs causes a bad
path lookup for the git-chglog tool.

Signed-off-by: ldelossa <[email protected]>
  • Loading branch information
ldelossa authored and ldelossa committed Mar 18, 2021
1 parent 280bf2b commit 6e26297
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ jobs:
- name: ChangeLog
run: |
curl -o /tmp/git-chglog -L https://github.com/ldelossa/git-chglog/releases/download/v0.11.2-sortbysemver/linux.amd64.git-chglog
chmod u+x git-chglog
chmod u+x /tmp/git-chglog
echo "creating change log for tag: $VERSION"
./git-chglog "${VERSION}" > "${{github.workspace}}/changelog"
/tmp/git-chglog "${VERSION}" > "${{github.workspace}}/changelog"
- name: Create Release
uses: actions/create-release@latest
env:
Expand Down

0 comments on commit 6e26297

Please sign in to comment.