-
We used the template from the main page with setting conditional push on adding a new tag but it seems to be skipped. We have |
Beta Was this translation helpful? Give feedback.
Replies: 5 comments
-
Did you push a tag? (not just commit ref) |
Beta Was this translation helpful? Give feedback.
-
Oh, this is the workflow that was triggered on the |
Beta Was this translation helpful? Give feedback.
-
Doc on Doc on triggers: https://help.github.com/en/actions/reference/events-that-trigger-workflows#release-event-release. Doc on |
Beta Was this translation helpful? Give feedback.
-
I'm guessing you'll need to add |
Beta Was this translation helpful? Give feedback.
-
Thx for the fast reply, Ill try Lightning-AI/pytorch-lightning#1407 |
Beta Was this translation helpful? Give feedback.
I'm guessing you'll need to add
|| github.event_name == 'release'
in the end of both conditions if you want those steps to be triggered both on pushes to master and on adding releases.