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: