Skip to content

Commit

Permalink
Allow signing builds from dispatch actions
Browse files Browse the repository at this point in the history
  • Loading branch information
m-kuhn committed Jun 12, 2024
1 parent fc75259 commit f7461da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ jobs:
path: ${{ env.CMAKE_BUILD_DIR }}/_CPack_Packages/**/*.log

- name: 🎭 Sign
if: ( github.event_name == 'release' || github.event_name == 'workflow_dispatch' ) && startsWith(github.ref, 'refs/tags/v') && env.ARTIFACT_NAME != null
if: ( github.event_name == 'release' && startsWith(github.ref, 'refs/tags/v') ) || github.event_name == 'workflow_dispatch' && env.ARTIFACT_NAME != null
uses: azure/trusted-signing-action@v0.3.20
with:
azure-tenant-id: ${{ secrets.AZURE_TENANT_ID }}
Expand Down

0 comments on commit f7461da

Please sign in to comment.