Skip to content

Commit f5fd808

Browse files
committed
ci: update the download command
1 parent c58ac36 commit f5fd808

File tree

2 files changed

+4
-12
lines changed

2 files changed

+4
-12
lines changed

.github/workflows/create-binaries-dev.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,8 @@ jobs:
2020
- name: Generate Change Log
2121
id: generate_log
2222
run: |
23-
curl -s https://api.github.com/repos/barelyhuman/commitlog/releases/39397415 \
24-
| grep browser_download_url \
25-
| grep linux-amd64 \
26-
| cut -d '"' -f 4 \
27-
| wget -qi -
28-
tar -xvzf commitlog-linux-amd64.tar.gz
23+
curl -L https://github.com/barelyhuman/commitlog/releases/download/v0.0.6/commitlog-linux-amd64.tar.gz -o clog.tar.gz
24+
tar -xvzf clog.tar.gz
2925
chmod +x commitlog
3026
./commitlog . > CHANGELOG.txt
3127
- name: Generate build files

.github/workflows/create-binaries.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,8 @@ jobs:
2020
- name: Generate Change Log
2121
id: generate_log
2222
run: |
23-
curl -s https://api.github.com/repos/barelyhuman/commitlog/releases/39397415 \
24-
| grep browser_download_url \
25-
| grep linux-amd64 \
26-
| cut -d '"' -f 4 \
27-
| wget -qi -
28-
tar -xvzf commitlog-linux-amd64.tar.gz
23+
curl -L https://github.com/barelyhuman/commitlog/releases/download/v0.0.6/commitlog-linux-amd64.tar.gz -o clog.tar.gz
24+
tar -xvzf clog.tar.gz
2925
chmod +x commitlog
3026
./commitlog . > CHANGELOG.txt
3127
- name: Generate build files

0 commit comments

Comments
 (0)