From 15f56dd0fe016d78cb2f6de3386baff8d8462799 Mon Sep 17 00:00:00 2001 From: Aviral Takkar <39969667+avtakkar@users.noreply.github.com> Date: Wed, 20 Mar 2024 16:18:14 -0700 Subject: [PATCH] fix: address yml syntax issues (#20) --- .github/workflows/release.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index be7ee46..f874ef9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -15,7 +15,8 @@ jobs: env: REGISTRY: ghcr.io REPO_PREFIX: ${{ format('azure/acr/dev/') }} - + outputs: + git_tag: ${{ steps.get_git_tag.outputs.git_tag }} steps: - name: Get Git Tag id: get_git_tag @@ -58,7 +59,7 @@ jobs: contents: read id-token: write # This is required for requesting the JWT from AAD. env: - TAG: ${{ needs.publish.outputs.get_git_tag.outputs.git_tag }} + TAG: ${{ needs.publish.outputs.git_tag }} steps: - name: 'Az CLI login' uses: azure/login@v1