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.
1 parent afbf1ab commit d6c12e5Copy full SHA for d6c12e5
.github/workflows/deploy-docs.yml
@@ -27,7 +27,9 @@ jobs:
27
fetch-depth: 0
28
- name: Rest Build Reference to SHA
29
if: ${{ github.event.inputs.build-refname != '' && github.event.inputs.build-sha != '' }}
30
- run: git update-ref refs/remotes/origin/${{ github.event.inputs.build-refname }} ${{ github.event.inputs.build-sha }}
+ run: |
31
+ git update-ref refs/remotes/origin/${{ github.event.inputs.build-refname }} ${{ github.event.inputs.build-sha }}
32
+ git update-ref refs/heads/${{ github.event.inputs.build-refname }} ${{ github.event.inputs.build-sha }}
33
- name: Fetch Main Branch
34
run: git fetch origin ${{ github.event.repository.default_branch }}:main
35
- name: Set Up Node
0 commit comments