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 35e09c9 commit 841c1e6Copy full SHA for 841c1e6
.github/workflows/dispatch-deploy-docs.yml
@@ -25,15 +25,12 @@ jobs:
25
if: ${{ inputs.should-deploy-docs == 'true' }}
26
runs-on: ubuntu-latest
27
steps:
28
- - uses: actions/checkout@v4
29
- with:
30
- ref: ${{ inputs.branch-name }}
31
- fetch-depth: 1
32
- name: Dispatch (partial build)
33
if: ${{ inputs.build-type == 'partial' }}
34
env:
35
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
36
- run: gh workflow run deploy-docs.yml -r $(git rev-parse --abbrev-ref HEAD) -f build-refname=${{ github.ref_name }}
+ BRANCH_NAME: ${{ inputs.branch-name }}
+ run: gh workflow run deploy-docs.yml -r "$BRANCH_NAME" -f build-refname=${{ github.ref_name }}
37
- name: Dispatch (full build)
38
if: ${{ inputs.build-type == 'full' }}
39
0 commit comments