diff options
| author | Joseph Hunkeler <jhunkeler@gmail.com> | 2025-01-18 01:04:59 -0500 |
|---|---|---|
| committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2025-01-18 01:04:59 -0500 |
| commit | ced6c4815a36360df7c3fc0dbdc02ecafe3b1214 (patch) | |
| tree | 2c8edcddd53032c527a7c6ce8ddeb722f81fcb98 /.github/workflows | |
| parent | 19dac7a862d6eb8896d5ed4b8c0ab828fdc270bd (diff) | |
| download | ghasandbox-ced6c4815a36360df7c3fc0dbdc02ecafe3b1214.tar.gz | |
OK
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/pipeline_run.yml | 9 |
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 |
