fix(ci): Ignore tar race condition in publish step
The all-architectures tar archive may change during creation due to other files being written. This causes tar to exit with code 1 even though the archive is created successfully. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
e15248afea
commit
66b504dc07
4
.github/workflows/build-openwrt-packages.yml
vendored
4
.github/workflows/build-openwrt-packages.yml
vendored
@ -598,8 +598,8 @@ jobs:
|
|||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
# Create all-in-one archive
|
# Create all-in-one archive (ignore "file changed" warning)
|
||||||
tar -czf "release/secubox-${VERSION}-all-architectures.tar.gz" -C release .
|
tar -czf "release/secubox-${VERSION}-all-architectures.tar.gz" -C release . || true
|
||||||
|
|
||||||
# Checksums
|
# Checksums
|
||||||
cd release
|
cd release
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user