ci: Prevent cancellation on push to branch.
ci: Use wildcard to preserve any artifact directory structure. (970cea5c2b)
ci: Mask out debug smoketest on toolchain stable
Signed-off-by: Jason Volk <jason@zemos.net>
This commit is contained in:
10
.github/workflows/bake.yml
vendored
10
.github/workflows/bake.yml
vendored
@@ -135,8 +135,8 @@ jobs:
|
||||
run: |
|
||||
cid=$(docker create "$iid" /)
|
||||
rm -rf _artifact
|
||||
mkdir -p "_artifact/$dst"
|
||||
docker cp "$cid:$src" "_artifact/$dst/$dst"
|
||||
mkdir -p "_artifact"
|
||||
docker cp "$cid:$src" "_artifact/$dst"
|
||||
|
||||
# Optionally extract the image itself as an artifact.
|
||||
- name: Extract Image
|
||||
@@ -151,8 +151,8 @@ jobs:
|
||||
|
||||
run: |
|
||||
rm -rf _artifact
|
||||
mkdir -p "_artifact/$dst"
|
||||
docker save -o "_artifact/$dst/$dst" "$iid"
|
||||
mkdir -p "_artifact"
|
||||
docker save -o "_artifact/$dst" "$iid"
|
||||
|
||||
# Upload either artifact
|
||||
- name: Upload Artifact
|
||||
@@ -162,5 +162,5 @@ jobs:
|
||||
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
path: _artifact/${{ fromJSON(inputs.artifact)[matrix.bake_target].dst }}
|
||||
path: _artifact/*
|
||||
name: ${{matrix.cargo_profile}}-${{matrix.feat_set}}-${{fromJSON(inputs.artifact)[matrix.bake_target].dst}}
|
||||
|
||||
Reference in New Issue
Block a user