Skip to content

Commit 001c9fe

Browse files
committed
fix(.github): ignore dockerbuild artifacts with docker/build-push-action v6 bump
Signed-off-by: Vaughn Dice <[email protected]>
1 parent 5f9cc1b commit 001c9fe

File tree

3 files changed

+5
-0
lines changed

3 files changed

+5
-0
lines changed

.github/workflows/action-node-installer.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ jobs:
3636
- uses: actions/download-artifact@v6
3737
with:
3838
path: _artifacts
39+
pattern: "!*.dockerbuild"
3940

4041
- name: Set up QEMU
4142
uses: docker/setup-qemu-action@v3
@@ -123,6 +124,7 @@ jobs:
123124
- uses: actions/download-artifact@v6
124125
with:
125126
path: _artifacts
127+
pattern: "!*.dockerbuild"
126128

127129
- name: Set up QEMU
128130
uses: docker/setup-qemu-action@v3

.github/workflows/action-test.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ jobs:
1111
steps:
1212
- uses: actions/checkout@v5
1313
- uses: actions/download-artifact@v6
14+
with:
15+
pattern: "!*.dockerbuild"
1416
- uses: azure/setup-kubectl@v4
1517
- uses: fermyon/actions/spin/setup@v1
1618
with:

.github/workflows/release.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ jobs:
4040
- uses: actions/download-artifact@v6
4141
with:
4242
path: _artifacts
43+
pattern: "!*.dockerbuild"
4344

4445
- name: Copy release workload assets into _dist
4546
if: startsWith(github.ref, 'refs/tags/v')

0 commit comments

Comments
 (0)