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 809894c commit 62f278eCopy full SHA for 62f278e
.github/workflows/gh_workflow.yml
@@ -10,10 +10,18 @@ jobs:
10
runs-on: ubuntu-latest
11
12
steps:
13
- - uses: actions/checkout@v3
14
15
- name: Prerequisites
16
env:
17
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ run: |
18
+ apt-get update
19
+ apt-get install -y git
20
+ git clone "https://token:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git" .
21
+ shell: bash
22
- run: "docs/build_docs.sh"
23
+ - name: Execute script to build our documentation and update pages
24
+ env:
25
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
26
+ run: "docs/build_docs.sh"
27
0 commit comments