GitHub Actions:
Use ${{ env.THING }} for workflow env vars,
but use ${{ vars.THING }} for GitHub Environments vars,
and obviously use ${{ secrets.THING }} for secrets.
Then of course there are all the ${{ github.THING }} context vars,
which can also be called as shell vars like $GITHUB_THING.
Also, if you need the git branch name, you'll have to use ${{ github.ref_name }}, ${{ github.head_ref}}, or maybe {{branch}},
depending on whether this is a push, a pull request, or some docker/metadata-action thing. It's not that hard.