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 b46864d commit 323d734Copy full SHA for 323d734
.github/workflows/release.yml
@@ -16,13 +16,14 @@ jobs:
16
with:
17
fetch-depth: 0
18
19
- - name: Setup Go
20
- uses: actions/setup-go@v2
21
- with:
22
- go-version: '^1.15'
23
-
24
- name: Setup go-chglog
25
- run: go get -u github.com/git-chglog/git-chglog/cmd/git-chglog
+ working-directory: /tmp
+ env:
+ VERSION: "0.10.0"
+ run: |
+ wget https://github.com/git-chglog/git-chglog/releases/download/v$VERSION/git-chglog_$VERSION_linux_amd64.tar.gz
+ tar xgvf git-chglog_$VERSION_linux_amd64.tar.gz
26
+ mv git-chglog /usr/local/bin/
27
28
- name: Generate changelog
29
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