Skip to content

Commit

Permalink
fixup! Add release workflow for the restate repository
Browse files Browse the repository at this point in the history
  • Loading branch information
tillrohrmann committed Apr 27, 2023
1 parent 1946d75 commit b33a0de
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,11 @@ jobs:
- name: Package cli binaries
id: package-cli-binaries
run: |
for cli in restate-cli-*; do zip -j ${cli}.zip ${cli}/restate-cli; done
for cli in restate-cli-*;
do
[ -e "$cli" ] || continue
zip -j ${cli}.zip ${cli}/restate-cli;
done
echo "PACKAGES<<EOF" >> $GITHUB_OUTPUT
ls -1 restate-cli-*.zip >> $GITHUB_OUTPUT
echo "EOF" >> $GITHUB_OUTPUT
Expand Down

0 comments on commit b33a0de

Please sign in to comment.