Skip to content

Commit

Permalink
Fix filename in CI script
Browse files Browse the repository at this point in the history
  • Loading branch information
vy committed Sep 6, 2023
1 parent 7c20777 commit 6913eb2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/deploy-release-reusable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ jobs:
export DIST_FILEPATH_SRC="${DIST_FILEPATH_PREFIX}-src.zip"
export DIST_FILEPATH_BIN="${DIST_FILEPATH_PREFIX}-bin.zip"
mv "target/src.zip" "$DIST_FILEPATH_SRC"
[ -f "$DIST_FILEPATH_SRC" ] && mv "target/bin.zip" "$DIST_FILEPATH_BIN"
test -f "target/bin.zip" && mv "$_" "$DIST_FILEPATH_BIN"
# Create signature and checksum files
for DIST_FILEPATH in "$DIST_FILEPATH_SRC" "$DIST_FILEPATH_BIN"; do
Expand Down

0 comments on commit 6913eb2

Please sign in to comment.