From b5ce77c615c1d08c29306221cb5ae09632da6e1e Mon Sep 17 00:00:00 2001 From: Aviral Takkar Date: Wed, 20 Mar 2024 16:05:56 -0700 Subject: [PATCH] fix: try to address syntax issues --- .github/workflows/release.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f26e7a6..be7ee46 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -58,7 +58,7 @@ jobs: contents: read id-token: write # This is required for requesting the JWT from AAD. env: - TAG: ${GITHUB_REF#refs/tags/} + TAG: ${{ needs.publish.outputs.get_git_tag.outputs.git_tag }} steps: - name: 'Az CLI login' uses: azure/login@v1 @@ -71,8 +71,9 @@ jobs: if: ${{ success() }} uses: actions/checkout@v2 with: - ref: ${{ needs.publish.outputs.get_git_tag.outputs.git_tag }} + ref: ${{ env.TAG }} - name: 'Make' + if: ${{ success() }} run: | - PEERD_IMAGE_TAG=${{ needs.publish.outputs.get_git_tag.outputs.git_tag }} make tests-deps-install tests-ci-aks + PEERD_IMAGE_TAG=${{ env.TAG }} make tests-deps-install tests-ci-aks