Skip to content

Commit

Permalink
Exclude workflow_dispatch from the release github-action triggers
Browse files Browse the repository at this point in the history
  • Loading branch information
jacquesh committed Apr 3, 2023
1 parent 8a03a79 commit 19e2c52
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: release
on:
workflow_dispatch:
# NOTE: We specifically do *not* support `workflow_dispatch` here, because if we run this from
# workflow_dispatch, it will create a tag & release named /refs/heads/master or similar.
# This is a pain to deal with and we can always just delete the tag and tag a later commit
# if we need to make fixes as part of the release process.
push:
tags:
- '*'
Expand Down

0 comments on commit 19e2c52

Please sign in to comment.