Skip to content

Commit

Permalink
fix: build arm64
Browse files Browse the repository at this point in the history
  • Loading branch information
russkel authored Aug 4, 2023
1 parent f6e0d78 commit d72bdc6
Showing 1 changed file with 14 additions and 4 deletions.
18 changes: 14 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,17 @@ on:

jobs:
release:
name: Release
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
job:
- runner: buildjet-4vcpu-ubuntu-2204
arch: amd64
- runner: buildjet-4vcpu-ubuntu-2204-arm
arch: arm64

name: Release - ${{ matrix.job.arch }}
runs-on: ${{matrix.job.runner}}}

steps:
- name: Checkout this repository
Expand All @@ -16,5 +25,6 @@ jobs:
uses: Greenroom-Robotics/ros_semantic_release_action@main
with:
token: ${{ secrets.API_TOKEN_GITHUB }}
public: "true"
changelog: "false"
arch: ${{ matrix.job.arch }}
public: true
changelog: false

0 comments on commit d72bdc6

Please sign in to comment.