aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/pipeline_run.yml9
1 files changed, 7 insertions, 2 deletions
diff --git a/.github/workflows/pipeline_run.yml b/.github/workflows/pipeline_run.yml
index 7aefcc8..5e73df8 100644
--- a/.github/workflows/pipeline_run.yml
+++ b/.github/workflows/pipeline_run.yml
@@ -55,8 +55,13 @@ on:
jobs:
publish:
- name: Publish
- runs-on: ubuntu-latest
+ name: Publish (${{ runner.os }}-${{ runner.arch }})
+ runs-on: ${{ matrix.os }}
+ strategy:
+ matrix:
+ os:
+ - ubuntu-latest
+ - ubuntu-arm64
steps:
- name: Checkout
uses: actions/checkout@v4