Skip to content

Commit

Permalink
fix: move start commands used for binaries
Browse files Browse the repository at this point in the history
  • Loading branch information
builder555 committed Mar 10, 2023
1 parent affe2df commit 48b1a18
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ci/package.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Push-Location dist
Compress-Archive -Path main_server/, serve/ -DestinationPath $zip_path -Force
Pop-Location

Compress-Archive -Update start.ps1 $zip_path
Compress-Archive -Update ci/start.ps1 $zip_path
Compress-Archive -Update version.txt $zip_path

Write-Output "asset_path=$zip_path" >> $Env:GITHUB_OUTPUT
Expand Down
4 changes: 2 additions & 2 deletions ci/package.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ pushd dist || exit
zip -r "${zip_path}" main_server/ serve/

popd || exit
zip -u "${zip_path}" start.sh version.txt
zip -u -j "${zip_path}" ci/start.sh version.txt

echo "asset_path=$zip_path" >> "$GITHUB_OUTPUT"
echo "asset_name=${name}.zip" >> "$GITHUB_OUTPUT"
echo "asset_name=${name}.zip" >> "$GITHUB_OUTPUT"
File renamed without changes.
File renamed without changes.

0 comments on commit 48b1a18

Please sign in to comment.