@@ -20,10 +20,10 @@ jobs:
20
20
fetch-depth : 0
21
21
22
22
- name : Make fetch_docs.sh Executable
23
- run : chmod +x $/src/scripts/fetch_docs.sh
23
+ run : chmod +x ${{ github.workspace }} /src/scripts/fetch_docs.sh
24
24
25
25
- name : Fetch All Docs
26
- run : $/src/scripts/fetch_docs.sh
26
+ run : ${{ github.workspace }} /src/scripts/fetch_docs.sh
27
27
28
28
- name : Debug
29
29
run : |
34
34
uses : actions/upload-artifact@v4
35
35
with :
36
36
name : docs-raw
37
- path : $/docs/
37
+ path : ${{ github.workspace }} /docs/
38
38
39
39
commit-docs :
40
40
if : github.event_name == 'push' && github.event.pusher.name != 'github-actions[bot]' && (!startsWith(github.event.head_commit.message, 'Merge pull request') || !contains(github.event.head_commit.message, 'release-please--branches--main'))
@@ -58,12 +58,12 @@ jobs:
58
58
uses : actions/download-artifact@v4
59
59
with :
60
60
name : docs-raw
61
- path : $/docs/dev/
61
+ path : ${{ github.workspace }} /docs/dev/
62
62
63
63
- name : Check for Changes
64
64
run : |
65
65
git status
66
- ls -R $/docs/dev
66
+ ls -R ${{ github.workspace }} /docs/dev
67
67
68
68
- name : Add Changes
69
69
run : git add .
@@ -119,7 +119,7 @@ jobs:
119
119
uses : actions/download-artifact@v4
120
120
with :
121
121
name : docs-raw
122
- path : $/build
122
+ path : ${{ github.workspace }} /build
123
123
124
124
- name : Install Dependencies
125
125
run : npm install
@@ -131,4 +131,4 @@ jobs:
131
131
uses : peaceiris/actions-gh-pages@v3
132
132
with :
133
133
github_token : ${{ secrets.GITHUB_TOKEN }}
134
- publish_dir : $/build
134
+ publish_dir : ${{ github.workspace }} /build
0 commit comments