Skip to content

Commit 14dcc06

Browse files
hardcode home directory for the runner. Directory was taken from rust build/install logs
1 parent 740c52a commit 14dcc06

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
uses: actions/upload-artifact@v4
3939
with:
4040
name: pre-built-tools
41-
path: $HOME/.cargo/bin/
41+
path: /home/runner/.cargo/bin/
4242

4343
create-translation:
4444
strategy:
@@ -89,7 +89,7 @@ jobs:
8989
uses: actions/download-artifact@v4
9090
with:
9191
name: pre-built-tools
92-
path: $HOME/.cargo/bin/
92+
path: /home/runner/.cargo/bin/
9393

9494
- name: Build course in English
9595
if: matrix.language == 'en'
@@ -121,7 +121,7 @@ jobs:
121121
- name: Download pre-built tools
122122
uses: actions/download-artifact@v4
123123
with:
124-
path: $HOME/.cargo/bin/
124+
path: /home/runner/.cargo/bin/
125125
name: pre-built-tools
126126

127127
- name: Download all translations

0 commit comments

Comments
 (0)