From bba84a22ffa5761965e976b1ba90701bcab09a6a Mon Sep 17 00:00:00 2001 From: xavix-yo Date: Mon, 20 Jul 2026 15:36:09 +0100 Subject: [PATCH] Fix package workflow: add missing --os linux argument 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). --- .gitea/workflows/nightly.yml | 2 ++ .gitea/workflows/release.yml | 2 ++ 2 files changed, 4 insertions(+) diff --git a/.gitea/workflows/nightly.yml b/.gitea/workflows/nightly.yml index 355a0c0..7369585 100644 --- a/.gitea/workflows/nightly.yml +++ b/.gitea/workflows/nightly.yml @@ -34,6 +34,7 @@ jobs: cd "${GITHUB_WORKSPACE:-.}" ./ci/package.sh \ --version nightly \ + --os linux \ --arch amd64 \ --target-dir /home/dguiducci/.cache/skald-ci/target/release \ --output dist/ @@ -43,6 +44,7 @@ jobs: cd "${GITHUB_WORKSPACE:-.}" ./ci/package.sh \ --version nightly \ + --os linux \ --arch arm64 \ --target-dir /home/dguiducci/.cache/skald-ci/target/aarch64-unknown-linux-gnu/release \ --output dist/ diff --git a/.gitea/workflows/release.yml b/.gitea/workflows/release.yml index 2244b81..a4ce55a 100644 --- a/.gitea/workflows/release.yml +++ b/.gitea/workflows/release.yml @@ -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/