Skip to content

Commit

Permalink
fix: run arm64 docker builds on macos-latest instead of ubuntu-24.04-arm
Browse files Browse the repository at this point in the history
  • Loading branch information
alexsporn committed Feb 4, 2025
1 parent 4c6a57f commit 1aa7534
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/release_docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:
image: ${{ fromJSON(needs.prepare.outputs.images) }}
os: [
ubuntu-24.04,
ubuntu-24.04-arm,
macos-latest, #use macos-latest for arm64 builds
]
runs-on: ${{ matrix.os }}
steps:
Expand All @@ -88,10 +88,10 @@ jobs:

- name: Prepare Environment Variables
run: |
if [ "${{ runner.os }}" != "Linux" ]; then
echo "Error: This workflow only supports Linux runners."
exit 1
fi
# if [ "${{ runner.os }}" != "Linux" ]; then
# echo "Error: This workflow only supports Linux runners."
# exit 1
# fi

case "${{ runner.arch }}" in
X64)
Expand Down

0 comments on commit 1aa7534

Please sign in to comment.