We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 68d3240 commit 680d582Copy full SHA for 680d582
.github/workflows/release.yml
@@ -43,7 +43,7 @@ jobs:
43
set -euo pipefail
44
export BASE_URL="https://github.com/git-chglog/git-chglog/releases/download"
45
export FILENAME="git-chglog_${CHGLOG_VERSION}_linux_amd64.tar.gz"
46
- curl "${BASE_URL}/v${CHGLOG_VERSION}/${FILENAME}" |sudo tar xz git-chglog -C /usr/local/bin
+ curl -fsSL "${BASE_URL}/v${CHGLOG_VERSION}/${FILENAME}" |sudo tar xz git-chglog -C /usr/local/bin
47
git-chglog --config .github/chglog/config.yml --output CHANGELOG.md "${GITHUB_REF_NAME}"
48
49
- name: Create GitHub release
0 commit comments