Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix: packages.yaml action is not running on release trigger
This commit is a workaround to run the `packages.yaml` action after the release action
Fixes #5137.
Check #5137 for context.
  • Loading branch information
matifali authored Nov 27, 2022
commit 4c4ee1b88cd9e2fd06fa6406196706ea61b7575e
7 changes: 4 additions & 3 deletions .github/workflows/packages.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
name: Submit Packages
on:
release:
types: [published]

workflow_run:
workflows: [release]
types:
- completed
env:
CODER_VERSION: "${{ github.event.release.tag_name }}"

Expand Down