Skip to content

Commit

Permalink
Merge pull request #77 from gitcoinco/2683-fix
Browse files Browse the repository at this point in the history
fix: action name
  • Loading branch information
tim-schultz authored Jul 19, 2024
2 parents 23271da + 6d3dfd0 commit 3fddc2a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release_and_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,14 @@ jobs:
fetch-depth: 0

- name: Push to Staging Branch
uses: passportxyz/gh-workflows/.github/actions/push-to-branch@main
uses: passportxyz/gh-workflows/.github/actions/push_to_branch@main
with:
commit: ${{ needs.ref.outputs.refspec }}
github-token: ${{ secrets.GITHUB_TOKEN }}
branch: "staging-app"

outputs:
deployed-commit: ${{ steps.push-to-branch.outputs.deployed-commit }}
deployed-commit: ${{ steps.push_to_branch.outputs.deployed-commit }}

wait_for_production_approval:
name: Production Approval Pending
Expand All @@ -63,14 +63,14 @@ jobs:
fetch-depth: 0

- name: Push to Production Branch
uses: passportxyz/gh-workflows/.github/actions/push-to-branch@main
uses: passportxyz/gh-workflows/.github/actions/push_to_branch@main
with:
commit: ${{ needs.ref.outputs.refspec }}
github-token: ${{ secrets.GITHUB_TOKEN }}
branch: "production-app"

outputs:
deployed-commit: ${{ steps.push-to-branch.outputs.deployed-commit }}
deployed-commit: ${{ steps.push_to_branch.outputs.deployed-commit }}

deployment_info:
name: Display Deployment Information
Expand Down

0 comments on commit 3fddc2a

Please sign in to comment.