Skip to content

Commit 62f278e

Browse files
committed
update workflow
1 parent 809894c commit 62f278e

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

.github/workflows/gh_workflow.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,18 @@ jobs:
1010
runs-on: ubuntu-latest
1111

1212
steps:
13-
- uses: actions/checkout@v3
1413

1514
- name: Prerequisites
1615
env:
1716
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
17+
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
1822

19-
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+
shell: bash

0 commit comments

Comments
 (0)