Skip to content

Commit

Permalink
Merge pull request #274 from akostadinov/master
Browse files Browse the repository at this point in the history
arm64 builds timeout
  • Loading branch information
vi authored Oct 31, 2024
2 parents 26958d5 + 93a2f5b commit 5d7620d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/container-image-buildah.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
workflow_dispatch:
inputs:
platforms:
description: "comma-separated list of platforms to build for, e.g. linux/amd64,linux/s390x,linux/ppc64le,linux/riscv64 (leave empty for defaults)"
description: "comma-separated list of platforms to build for, e.g. linux/amd64,linux/arm64,linux/s390x,linux/ppc64le,linux/riscv64 (leave empty for defaults)"
default: ''
custom_tag:
description: optional custom tag on remote repo you want image to be tagged with
Expand Down Expand Up @@ -52,7 +52,7 @@ jobs:
- name: Sanitize Platforms
id: platforms
run: |
platforms="${{ inputs.platforms == '' && 'linux/amd64,linux/arm64' || inputs.platforms }}"
platforms="${{ inputs.platforms == '' && 'linux/amd64' || inputs.platforms }}"
archs="$( sed -e 's#linux/##g' <<< $platforms )"
echo "platforms=$platforms" >> $GITHUB_OUTPUT
echo "archs=$archs" >> $GITHUB_OUTPUT
Expand Down

0 comments on commit 5d7620d

Please sign in to comment.