Merge pull request #3203 from zeroclaw-labs/build-artifact-fix

fix(ci): exclude stale artifacts from release and Docker builds
This commit is contained in:
SimianAstronaut7 2026-03-11 16:31:35 +00:00 committed by GitHub
commit 9baa02a40b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 2 additions and 1 deletions

View File

@ -140,6 +140,7 @@ jobs:
- uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
with:
pattern: zeroclaw-*
path: artifacts
- name: Generate checksums

View File

@ -158,6 +158,7 @@ jobs:
- uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
with:
pattern: zeroclaw-*
path: artifacts
- name: Generate checksums

View File

@ -31,7 +31,6 @@ COPY src/ src/
COPY benches/ benches/
COPY crates/ crates/
COPY firmware/ firmware/
COPY data/ data/
COPY web/ web/
# Keep release builds resilient when frontend dist assets are not prebuilt in Git.
RUN mkdir -p web/dist && \