File tree Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"build" : {
3
- "publicDir" : " /home/runner/work /site"
3
+ "publicDir" : " . /site"
4
4
}
5
5
}
Original file line number Diff line number Diff line change @@ -290,6 +290,8 @@ jobs:
290
290
python -m pip install --ignore-installed six
291
291
python -m pip install ipython
292
292
293
+ echo "Workspace: ${{ GITHUB_WORKSPACE }}"
294
+
293
295
- name : Remove Duplicate Declaration Warnings
294
296
run : |
295
297
SITE_PACKAGES_DIR=$(python3 "-c" "from distutils import sysconfig; print(sysconfig.get_python_lib())")
@@ -362,15 +364,16 @@ jobs:
362
364
- name : Unpack site
363
365
shell : bash
364
366
run : |
365
- mkdir /home/runner/work/site
366
- tar --strip-components=1 -xf /home/runner/work/bld/ITKEx-build/ITKSphinxExamples-*-html.tar.gz -C /home/runner/work/site
367
+ mkdir ${{ GITHUB_WORKSPACE }}/site
368
+ echo "Unpack to ${{ GITHUB_WORKSPACE }}/site"
369
+ tar --strip-components=1 -xf /home/runner/work/bld/ITKEx-build/ITKSphinxExamples-*-html.tar.gz -C ${{ GITHUB_WORKSPACE }}/site
367
370
368
371
- name : Deploy website to Fleek
369
372
uses : fleekhq/action-deploy@v1
370
373
id : deploy
371
374
with :
372
375
apiKey : ${{ secrets.FLEEK_API_KEY }}
373
- workDir : /home/runner/work/Ex
376
+ # workDir: /home/runner/work/Ex
374
377
timeout-minutes : 15
375
378
376
379
- name : Get Fleek output URL
You can’t perform that action at this time.
0 commit comments