Konubinix' opinionated web of thoughts

Github Action

Fleeting

github action

cannot use ! at the beginning of an expression

You must always use the ${{ }} expression syntax or escape with ‘’, “”, or () when the expression starts with !, since ! is reserved notation in YAML format. For example:

if: ${{ ! startsWith(github.ref, ‘refs/tags/’) }}

https://docs.github.com/en/actions/writing-workflows/choosing-when-your-workflow-runs/using-conditions-to-control-job-execution

workflow

Notes pointant ici