Skip to content

Commit

Permalink
ci(build): patch-deprecated-gh-action-steps
Browse files Browse the repository at this point in the history
  • Loading branch information
mmpetarpeshev committed Dec 14, 2022
1 parent ce05dc0 commit 0a3b914
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/staging-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,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 @@ -89,7 +89,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 0a3b914

Please sign in to comment.