Skip to content

Commit

Permalink
Directly reference env vars in run directive
Browse files Browse the repository at this point in the history
  • Loading branch information
tkkuehn committed Nov 24, 2021
1 parent e5e0ab9 commit bac0a69
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/afids-validator_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ jobs:

- name: Modify release to match release versions
run: |
git tag -a -f -m "{{ env.GITHUB_REF }}" {{ env.GITHUB_REF }}
git tag -a -f -m "$GITHUB_REF" "$GITHUB_REF"
git push
git push origin -f ${{ env.GITHUB_REF }}
git push origin -f "$GITHUB_REF"
- name: Deploy heroku app
uses: akhileshns/[email protected]
Expand Down

0 comments on commit bac0a69

Please sign in to comment.