Skip to content

Commit f3283a1

Browse files
committed
[ci] Take 2 on accounting for working dir in upload
Yeah the previous would've been too easy...
1 parent 0ffc9ce commit f3283a1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/pelican.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ env:
4848
REQUIREMENTS: "-r requirements.txt"
4949
# FIXME: remove once official action can be used
5050
OUTPUT_PATH: "output/"
51+
WORKING_DIR: "./src"
5152

5253
# Allow one concurrent deployment
5354
concurrency:
@@ -102,7 +103,7 @@ jobs:
102103
- name: Upload artifact
103104
uses: actions/upload-pages-artifact@v3
104105
with:
105-
path: "${{ defaults.run.working-dir }}/${{ env.OUTPUT_PATH }}"
106+
path: "${{ env.WORKING_DIR }}/${{ env.OUTPUT_PATH }}"
106107
deploy:
107108
concurrency:
108109
group: "pages"

0 commit comments

Comments
 (0)