Skip to content

Commit

Permalink
Merge pull request #41 from runwaylab/use-arm-runners
Browse files Browse the repository at this point in the history
Use Linux `arm64` based runners for docker builds
  • Loading branch information
GrantBirki authored Jan 17, 2025
2 parents b3b2c68 + 2072c5c commit d6be2c5
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,14 @@ permissions:
jobs:
docker:
name: docker
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- os: ubuntu-latest
platform: linux/amd64
- os: ubuntu-24.04-arm
platform: linux/arm64

steps:
- name: checkout
Expand Down Expand Up @@ -73,7 +80,7 @@ jobs:
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
platforms: linux/amd64,linux/arm64
platforms: ${{ matrix.platform }}

- name: digest
env:
Expand Down

0 comments on commit d6be2c5

Please sign in to comment.