Skip to content

Commit d0f424d

Browse files
committed
Fix broken release script
1 parent 8a5e769 commit d0f424d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/build.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -337,10 +337,10 @@ jobs:
337337
curl -L -o "$HOME/bin/submark" \
338338
https://github.com/dahlia/submark/releases/download/0.2.0/submark-linux-x86_64
339339
chmod +x "$HOME/bin/submark"
340-
curl -L -o /tmp/github-release.tar.bz2 \
341-
https://github.com/aktau/github-release/releases/download/v0.7.2/linux-amd64-github-release.tar.bz2
342-
tar xvfj /tmp/github-release.tar.bz2 -C /tmp
343-
mv /tmp/bin/linux/amd64/github-release $HOME/bin
340+
curl -L -o $HOME/bin/github-release.bz2 \
341+
https://github.com/github-release/github-release/releases/download/v0.10.0/linux-amd64-github-release.bz2
342+
bzip2 -d $HOME/bin/github-release.bz2
343+
chmod +x $HOME/bin/github-release
344344
345345
version="${GITHUB_REF:10}"
346346
github_user="${GITHUB_REPOSITORY%/*}"

0 commit comments

Comments
 (0)