Skip to content

Commit

Permalink
feat: checkout code before deploy ui to branch (#651)
Browse files Browse the repository at this point in the history
  • Loading branch information
nutrina authored Aug 2, 2024
1 parent e7b416e commit 578d2e6
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/release_and_deploy_production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,11 @@ jobs:
needs: [ref, deploy-staging]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
ref: ${{ needs.ref.outputs.refspec }}
fetch-depth: 0
- id: push-to-branch
uses: passportxyz/gh-workflows/.github/actions/push_to_branch@v1
with:
Expand All @@ -86,6 +91,11 @@ jobs:
needs: [ref, deploy-production]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
ref: ${{ needs.ref.outputs.refspec }}
fetch-depth: 0
- id: push-to-branch
uses: passportxyz/gh-workflows/.github/actions/push_to_branch@v1
with:
Expand Down

0 comments on commit 578d2e6

Please sign in to comment.