Skip to content

Commit

Permalink
fix needs clause in signing job
Browse files Browse the repository at this point in the history
  • Loading branch information
Qix- committed Apr 9, 2024
1 parent 1842b30 commit dac3805
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ jobs:

outputs:
platform: ${{ matrix.platform }}
channel: ${{ env.channel }}

env:
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
Expand Down Expand Up @@ -139,7 +140,7 @@ jobs:
sign-tauri:
needs: build-tauri
runs-on: [self-hosted, evcodesignd]
if: ${{ env.channel == 'release' }} && ${{ needs.build-tauri.outputs.platform == 'windows-latest' }}
if: ${{ needs.build-tauri.outputs.channel == 'release' }} && ${{ needs.build-tauri.outputs.platform == 'windows-latest' }}
steps:
- name: Download unsigned artifacts
uses: actions/download-artifact@v2
Expand Down

0 comments on commit dac3805

Please sign in to comment.