Skip to content

Commit

Permalink
Fix docs build commands
Browse files Browse the repository at this point in the history
  • Loading branch information
danhunsaker committed Feb 28, 2023
1 parent 29fb790 commit bf65d35
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -293,12 +293,12 @@ jobs:
- name: Invoke deployment hook (en)
if: matrix.lang == 'en'
run: |
curl -X POST -d "branches=${{ env.BRANCH_NAME }}" -d "token=${{ matrix.token }}" https://readthedocs.org/api/v2/webhook/calends/${{ matrix.hook }}/
curl -X POST -d "branches=${{ github.head_ref || github.ref_name }}" -d "token=${{ matrix.token }}" https://readthedocs.org/api/v2/webhook/calends/${{ matrix.hook }}/
- name: Invoke deployment hook (${{ matrix.lang }})
if: matrix.lang != 'en'
run: |
curl -X POST -d "branches=${{ env.BRANCH_NAME }}" -d "token=${{ matrix.token }}" https://readthedocs.org/api/v2/webhook/calends-${{ matrix.lang }}/${{ matrix.hook }}/
curl -X POST -d "branches=${{ github.head_ref || github.ref_name }}" -d "token=${{ matrix.token }}" https://readthedocs.org/api/v2/webhook/calends-${{ matrix.lang }}/${{ matrix.hook }}/
build:
name: Build Binaries
Expand Down

0 comments on commit bf65d35

Please sign in to comment.