Skip to content

Commit

Permalink
fix: packaging not including bat install script
Browse files Browse the repository at this point in the history
  • Loading branch information
imLinguin committed Jul 12, 2024
1 parent c93e6d8 commit 46f05b9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ci/package-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ fi
cp "target/$target/release/comet"* .

if [ "$RUNNER_OS" = "Windows" ]; then
7z a "comet-$target.zip" comet.exe dummy-service/*{.exe,.md}
7z a "comet-$target.zip" comet.exe dummy-service/*{.exe,.md,.bat}
echo "archive_name=comet-$target.zip" >> "$GITHUB_OUTPUT"
else
tar -czvf "comet-$target.tar.gz" comet dummy-service/*{.exe,.md} $params
tar -czvf "comet-$target.tar.gz" comet dummy-service/*{.exe,.md,.bat} $params
echo "archive_name=comet-$target.tar.gz" >> "$GITHUB_OUTPUT"
fi

0 comments on commit 46f05b9

Please sign in to comment.