We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e80651b commit 52962a0Copy full SHA for 52962a0
.github/workflows/release.yml
@@ -22,8 +22,9 @@ jobs:
22
VERSION: "0.10.0"
23
run: |
24
wget https://github.com/git-chglog/git-chglog/releases/download/v${VERSION}/git-chglog_${VERSION}_linux_amd64.tar.gz
25
- tar xgvf git-chglog_${VERSION}_linux_amd64.tar.gz
26
- mv git-chglog /usr/local/bin/
+ gunzip git-chglog_${VERSION}_linux_amd64.tar.gz
+ tar -xvf git-chglog_${VERSION}_linux_amd64.tar
27
+ sudo mv git-chglog /usr/local/bin/
28
29
- name: Generate changelog
30
run: git-chglog -c .github/git-chglog/config.yml -o RELEASE_CHANGELOG.md $(git describe --tags $(git rev-list --tags --max-count=1))
0 commit comments