Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/action-docker-build-push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,15 +48,15 @@ jobs:
sudo systemctl restart docker

- name: Build and load (test run)
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
if: ${{ inputs.test }}
with:
context: ${{ matrix.image.context }}
load: true
tags: containerd-shim-spin/${{ matrix.image.imageName }}:test
platforms: wasi/wasm
- name: Build and push
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
if: ${{ !inputs.test }}
with:
push: true
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/action-node-installer.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ jobs:
- uses: actions/download-artifact@v6
with:
path: _artifacts
pattern: "!*.dockerbuild"

- name: Set up QEMU
uses: docker/setup-qemu-action@v3
Expand Down Expand Up @@ -123,6 +124,7 @@ jobs:
- uses: actions/download-artifact@v6
with:
path: _artifacts
pattern: "!*.dockerbuild"

- name: Set up QEMU
uses: docker/setup-qemu-action@v3
Expand All @@ -145,7 +147,7 @@ jobs:
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build and push node-installer image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
push: true
tags: |
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/action-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ jobs:
steps:
- uses: actions/checkout@v5
- uses: actions/download-artifact@v6
with:
pattern: "!*.dockerbuild"
- uses: azure/setup-kubectl@v4
- uses: fermyon/actions/spin/setup@v1
with:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ jobs:
- uses: actions/download-artifact@v6
with:
path: _artifacts
pattern: "!*.dockerbuild"

- name: Copy release workload assets into _dist
if: startsWith(github.ref, 'refs/tags/v')
Expand Down Expand Up @@ -82,7 +83,7 @@ jobs:
for f in ./_artifacts/*/*-aarch64.tar.gz; do tar -xf $f --directory ./deployments/k3d/.tmp/linux/arm64; done

- name: Build and push k3d shim image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
push: true
tags: |
Expand Down
Loading