Skip to content

Commit

Permalink
CI - Detect when workflow is triggered manually (#420)
Browse files Browse the repository at this point in the history
  • Loading branch information
MrChocolatine authored Oct 29, 2024
1 parent 3e1f0c7 commit c068347
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/tag-release-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ concurrency:

jobs:
create_git_tag:
if: ${{ github.event.workflow_run.conclusion == 'success' }}
if: ${{ github.event.workflow_run.conclusion == 'success' || github.event_name == 'workflow_dispatch' }}
name: Create new tag
runs-on: ubuntu-latest
timeout-minutes: 20
Expand Down

0 comments on commit c068347

Please sign in to comment.