From e0cfb23a90b2de0a143bd22f9494609047fb794d Mon Sep 17 00:00:00 2001 From: andrussal Date: Thu, 15 Jan 2026 12:51:59 +0100 Subject: [PATCH] ci: normalize bundle tar when building locally --- .github/workflows/lint.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 3bdfee3..6885a18 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -319,6 +319,7 @@ jobs: if [ -z "$artifact_id" ]; then echo "Nomos binaries artifact ${ARTIFACT_NAME} not found; building host bundle locally." ./scripts/build/build-bundle.sh --platform host --output "${GITHUB_WORKSPACE}/.tmp/nomos-binaries-host-${VERSION}.tar.gz" + cp "${GITHUB_WORKSPACE}/.tmp/nomos-binaries-host-${VERSION}.tar.gz" "${GITHUB_WORKSPACE}/.tmp/nomos-binaries.tar.gz" exit 0 fi gh api -X GET "repos/${GITHUB_REPOSITORY}/actions/artifacts/${artifact_id}/zip" > "${TMPDIR}/nomos-binaries.zip" @@ -430,6 +431,7 @@ jobs: if [ -z "$artifact_id" ]; then echo "Nomos binaries artifact ${ARTIFACT_NAME} not found; building linux bundle locally." ./scripts/build/build-bundle.sh --platform linux --output "${GITHUB_WORKSPACE}/.tmp/nomos-binaries-linux-${VERSION}.tar.gz" + cp "${GITHUB_WORKSPACE}/.tmp/nomos-binaries-linux-${VERSION}.tar.gz" "${GITHUB_WORKSPACE}/.tmp/nomos-binaries.tar.gz" exit 0 fi gh api -X GET "repos/${GITHUB_REPOSITORY}/actions/artifacts/${artifact_id}/zip" > "${download_dir}/nomos-binaries.zip"