Skip to content

Commit 898ba11

Browse files
authored
fix: packages.yaml action is not running on release trigger (#5173)
This commit is a workaround to run the `packages.yaml` action after the release action Fixes #5137. Check #5137 for context.
1 parent 25c8056 commit 898ba11

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/packages.yaml

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
name: Submit Packages
22
on:
3-
release:
4-
types: [published]
5-
3+
workflow_run:
4+
workflows: [release]
5+
types:
6+
- completed
67
env:
78
CODER_VERSION: "${{ github.event.release.tag_name }}"
89

0 commit comments

Comments
 (0)