From a3b1b601ca1cc3aac9d796b93c99f2ab4ffa26c5 Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Sat, 6 Jan 2024 13:13:27 -0800 Subject: [PATCH] run, not runs, also invert package matrix --- .github/actions/package/action.yml | 2 +- .github/workflows/deploy.yml | 18 +++++++++--------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/actions/package/action.yml b/.github/actions/package/action.yml index 831caf7e7..03ab509d2 100644 --- a/.github/actions/package/action.yml +++ b/.github/actions/package/action.yml @@ -38,7 +38,7 @@ runs: - name: Configure Environment Variables shell: bash - runs: | + run: | echo "FRAMEWORK=${{ inputs.framework }}" >> "$GITHUB_ENV" echo "BRANCH=${{ inputs.branch }}" >> "$GITHUB_ENV" echo "SONARR_MAJOR_VERSION=${{ inputs.major_version }}" >> "$GITHUB_ENV" diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 4f2443166..857bec8d4 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -24,16 +24,16 @@ jobs: package: strategy: matrix: - os: [ubuntu-latest, windows-latest] + platform: [freebsd, linux, macos, windows] include: - - os: ubuntu-latest - platform: freebsd - - os: ubuntu-latest - platform: linux - - os: ubuntu-latest - platform: macos - - os: windows-latest - platform: windows + - platform: freebsd + os: ubuntu-latest + - platform: linux + os: ubuntu-latest + - platform: macos + os: ubuntu-latest + - platform: windows + os: windows-latest runs-on: ${{ matrix.os }} steps: