Fix package workflow: add missing --os linux argument
Nightly Build / build (push) Successful in 6m19s
Nightly Build / build (push) Successful in 6m19s
ci/package.sh requires --os (linux|darwin) but both nightly.yml and release.yml were calling it without --os, causing the build to fail with 'Missing required argument'. Add --os linux to all 4 package steps (amd64 + arm64 in each workflow).
This commit is contained in:
@@ -64,6 +64,7 @@ jobs:
|
||||
cd "${GITHUB_WORKSPACE:-.}"
|
||||
./ci/package.sh \
|
||||
--version "${{ steps.extract-version.outputs.version }}" \
|
||||
--os linux \
|
||||
--arch amd64 \
|
||||
--target-dir /home/dguiducci/.cache/skald-ci/target/release \
|
||||
--output dist/
|
||||
@@ -73,6 +74,7 @@ jobs:
|
||||
cd "${GITHUB_WORKSPACE:-.}"
|
||||
./ci/package.sh \
|
||||
--version "${{ steps.extract-version.outputs.version }}" \
|
||||
--os linux \
|
||||
--arch arm64 \
|
||||
--target-dir /home/dguiducci/.cache/skald-ci/target/aarch64-unknown-linux-gnu/release \
|
||||
--output dist/
|
||||
|
||||
Reference in New Issue
Block a user