diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e113f8ce..37dce0fc 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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 @@ -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