8000 fix: `packages.yaml` action is not running on `release` trigger by matifali · Pull Request #5173 · coder/coder · GitHub
[go: up one dir, main page]

Skip to content

fix: packages.yaml action is not running on release trigger #5173

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 27, 2022
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
0