We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4786fb3 + 7c0b4ed commit fc256b4Copy full SHA for fc256b4
.github/workflows/deploy.yml
@@ -13,6 +13,7 @@ jobs:
13
runs-on: ubuntu-latest
14
outputs: # set outputs for use in downstream jobs
15
continue: ${{ steps.deployment-check.outputs.continue }}
16
+ sha: ${{ steps.deployment-check.outputs.sha }}
17
18
steps:
19
# https://github.com/github/branch-deploy/blob/d3c24bd92505e623615b75ffdfac5ed5259adbdb/docs/merge-commit-strategy.md
@@ -32,6 +33,8 @@ jobs:
32
33
34
- name: checkout
35
uses: actions/checkout@v4
36
+ with:
37
+ ref: ${{ needs.deployment-check.outputs.sha }}
38
39
- name: setup node
40
uses: actions/setup-node@v4
0 commit comments