Skip to content

Commit

Permalink
ci: patch gh action output steps
Browse files Browse the repository at this point in the history
  • Loading branch information
mmpetarpeshev committed Dec 14, 2022
1 parent a8ca292 commit a7f0f38
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/staging-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down Expand Up @@ -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 }}
Expand Down

0 comments on commit a7f0f38

Please sign in to comment.