Skip to content

Commit 52962a0

Browse files
committed
fix(release): Update the release process
1 parent e80651b commit 52962a0

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/release.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,9 @@ jobs:
2222
VERSION: "0.10.0"
2323
run: |
2424
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/
25+
gunzip git-chglog_${VERSION}_linux_amd64.tar.gz
26+
tar -xvf git-chglog_${VERSION}_linux_amd64.tar
27+
sudo mv git-chglog /usr/local/bin/
2728
2829
- name: Generate changelog
2930
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

Comments
 (0)