From f9107d5695b9baef642c7f82a22030bdae29a0aa Mon Sep 17 00:00:00 2001 From: Martin Mulholland Date: Tue, 8 Mar 2022 11:21:31 -0500 Subject: [PATCH] Fix 02 --- .github/workflows/dev_release.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dev_release.yaml b/.github/workflows/dev_release.yaml index f5da6041..a4cd4bde 100644 --- a/.github/workflows/dev_release.yaml +++ b/.github/workflows/dev_release.yaml @@ -49,7 +49,7 @@ jobs: uses: dev-drprasad/delete-tag-and-release@v0.2.0 with: delete_release: true # default: false - tag_name: ${{ DEV_RELEASE }} # tag name to delete + tag_name: $DEV_RELEASE # tag name to delete env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} @@ -58,7 +58,7 @@ jobs: if: ${{ always() && steps.create-tarfile.outcome == 'success' }} uses: softprops/action-gh-release@v1 with: - tag_name: ${{ DEV_RELEASE }} + tag_name: $DEV_RELEASE body: "Development release created with each merge into the main branch." files: ${{ steps.create-tarfile.outputs.tarball_full_name }} env: