diff --git a/.github/workflows/staging-docker.yml b/.github/workflows/staging-docker.yml index eefcf1a38..b366b8744 100644 --- a/.github/workflows/staging-docker.yml +++ b/.github/workflows/staging-docker.yml @@ -59,7 +59,7 @@ jobs: id: git-sha shell: bash run: | - echo "::set-output name=git-sha::$(git rev-parse --short HEAD)" + echo GIT_SHA=$(git rev-parse --short HEAD) >> $GITHUB_OUTPUT - name: Build and push docker image if: github.event_name == 'pull_request' && github.event.action == 'opened' || github.event.action == 'synchronize' @@ -93,7 +93,7 @@ jobs: if: github.event_name == 'pull_request' && github.event.action == 'synchronize' uses: aeternity/ae-github-actions/argocd-pr-sync@v4 with: - git-sha: ${{ steps.git-sha.outputs.git-sha }} + git-sha: ${{ steps.git-sha.outputs.GIT_SHA }} url-prefix: pr-${{ env.PR_NUMBER }} env: ${{ env.ENV }} app: ${{ env.APP }}