From ced6c4815a36360df7c3fc0dbdc02ecafe3b1214 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Sat, 18 Jan 2025 01:04:59 -0500 Subject: OK --- .github/actions/stasis/action.yml | 8 +++++--- .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 -- cgit