Skip to content

Commit

Permalink
fix: install Podman in ARM runners
Browse files Browse the repository at this point in the history
  • Loading branch information
p5 authored Jan 16, 2025
1 parent 00435b4 commit 00af215
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/reusable-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,12 @@ jobs:
- name: Login to GHCR
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin

- name: Setup Dependencies
if: ${{ matrix.platform == 'arm64' }}
run: |
sudo apt update
sudo apt install -y podman
- name: Build Image
id: build-image
env:
Expand Down

0 comments on commit 00af215

Please sign in to comment.