From 3a96d31589295f9a06e3127d09b682c6dfb27b4a Mon Sep 17 00:00:00 2001 From: Rafael Breno Date: Thu, 16 Oct 2025 23:11:34 -0300 Subject: [PATCH] Add conditional for Windows runners --- actions/publish-image/action.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/actions/publish-image/action.yaml b/actions/publish-image/action.yaml index 1c4c56d..ec567de 100644 --- a/actions/publish-image/action.yaml +++ b/actions/publish-image/action.yaml @@ -175,14 +175,19 @@ runs: password: ${{ inputs.prime-password }} - name: Setup QEMU + if: runner.os != 'Windows' uses: docker/setup-qemu-action@v3 with: image: tonistiigi/binfmt:qemu-v8.1.5 cache-image: false + - name: Setup Docker Buildx + if: runner.os != 'Windows' uses: docker/setup-buildx-action@v3 + - name: Install Cosign uses: sigstore/cosign-installer@v3.5.0 + - uses: rancherlabs/slsactl/actions/install-slsactl@5dabfd2b8590a8c90d6f64b1c6ee215e24ed3bfd # v0.0.6 - name: Build and push image [Prime]