-
The README just mentions that "tag" is an option, but there are no examples of usage. The PR does have an example - but it seems to be hard coded to I'm probably missing something very obvious 😉 but it's not clear how you could use this without having to commit an update to your Is there anyway to set it to an automatic value? Some kind of auto incrementing counter? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
There's a few ways you can use them, one of which is using a workflow dispatch input: https://github.blog/changelog/2021-11-10-github-actions-input-types-for-manual-workflows/ The intention is not to hardcode it, but have it be computed from either an input or a previous action run. |
Beta Was this translation helpful? Give feedback.
There's a few ways you can use them, one of which is using a workflow dispatch input: https://github.blog/changelog/2021-11-10-github-actions-input-types-for-manual-workflows/
The intention is not to hardcode it, but have it be computed from either an input or a previous action run.