Skip to content

Commit

Permalink
Fix pipeline file.
Browse files Browse the repository at this point in the history
  • Loading branch information
antarcticrainforest committed Jul 25, 2024
1 parent d4ed5f6 commit 55fa0be
Showing 1 changed file with 3 additions and 10 deletions.
13 changes: 3 additions & 10 deletions .github/workflows/build_template_image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
push:
branches: ["add-metadata-crawler"]
tags:
- "build-"
- "build-*"
jobs:
linux-build:
name: Build multi-arch container template
Expand All @@ -24,19 +24,12 @@ jobs:
matrix:
include:
- arch: linux/amd64
target: linux-x64
- arch: linux/arm64
target: linux-arm64
- arch: linux/arm/v7
target: linux-armvl7
- arch: linux/arm/v6
target: linux-armvl6
- arch: linux/ppc64le
target: linux-ppc64
- arch: linux/s390x
target: linux-s390x
- arch: linux/i386
target: linux-i386

steps:
- name: Checkout repository
Expand All @@ -57,7 +50,7 @@ jobs:
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
with:
platforms: all
platforms: ${{ matrix.arch }}

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
Expand Down Expand Up @@ -90,4 +83,4 @@ jobs:
tags: |
ghcr.io/freva-clint/pyinstaller:py-${{ steps.repository.outputs.pyv }}
ghcr.io/freva-clint/pyinstaller:latest
platforms: ${{ matrix-arch }}
platforms: ${{ matrix.arch }}

0 comments on commit 55fa0be

Please sign in to comment.