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 | |
parent | 19dac7a862d6eb8896d5ed4b8c0ab828fdc270bd (diff) | |
download | ghasandbox-ced6c4815a36360df7c3fc0dbdc02ecafe3b1214.tar.gz |
OK
Diffstat (limited to '.github')
-rw-r--r-- | .github/actions/stasis/action.yml | 8 | ||||
-rw-r--r-- | .github/workflows/pipeline_run.yml | 9 |
2 files changed, 12 insertions, 5 deletions
diff --git a/.github/actions/stasis/action.yml b/.github/actions/stasis/action.yml index ce744ab..ed9d3eb 100644 --- a/.github/actions/stasis/action.yml +++ b/.github/actions/stasis/action.yml @@ -143,9 +143,6 @@ inputs: required: true default: "" -env: - REMOTE_PATHS: "/path/to/somewhere" - runs: using: "composite" steps: @@ -227,6 +224,11 @@ runs: args+="${!arg} " done + if [[ "${{ runner.os }}" == "macOS" ]]; then + args+="--no-testing " + args+="--no-docker " + fi + stasis \ $args \ ${{ inputs.stasis_args }} \ 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 |