Skip to content

Commit 1e4fa9b

Browse files
Copilotmichaelchu
andauthored
Fix release workflow trigger to use published event type (#67)
* Initial plan * Fix workflow trigger to use 'published' instead of 'created' Co-authored-by: michaelchu <540510+michaelchu@users.noreply.github.com> * Fix typo in workflow comment: 'workflows' -> 'workflow' Co-authored-by: michaelchu <540510+michaelchu@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: michaelchu <540510+michaelchu@users.noreply.github.com>
1 parent b8bcefc commit 1e4fa9b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/python-publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
# This workflows will upload a Python Package using Twine when a release is created
1+
# This workflow will upload a Python Package using Twine when a release is published
22
# For more information see: https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries
33

44
name: Upload Python Package
55

66
on:
77
release:
8-
types: [created]
8+
types: [published]
99

1010
jobs:
1111
deploy:

0 commit comments

Comments
 (0)