fix(ci): exclude Docker build artifact from release download

download-artifact picked up the Docker build provenance artifact
(Mezeporta~Erupe~39YWA8.dockerbuild) which fails to extract after
5 retries. Filter to only *-amd64 artifacts.
This commit is contained in:
Houmgaor
2026-03-19 15:57:51 +01:00
parent 24428c8409
commit d2e35c3be3

View File

@@ -114,6 +114,7 @@ jobs:
uses: actions/download-artifact@v4 uses: actions/download-artifact@v4
with: with:
path: artifacts path: artifacts
pattern: '*-amd64'
- name: Copy standalone schema for download - name: Copy standalone schema for download
run: cp server/migrations/sql/0001_init.sql SCHEMA.sql run: cp server/migrations/sql/0001_init.sql SCHEMA.sql