Skip to content

Commit 4642e49

Browse files
committed
[ci] Set the output path
I had a guess at some default-value-syntax for environment variables in CI (to mimic the default values for `input` variables in the original action), but no unfortunately no luck.
1 parent b5b6204 commit 4642e49

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/pelican.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,8 @@ env:
4646
# TODO: update when officially switching to community-managed page
4747
SITEURL: "https://test.idris-lang.org/"
4848
REQUIREMENTS: "-r requirements.txt"
49+
# FIXME: remove once official action can be used
50+
OUTPUT_PATH: "output/"
4951
# FIXME: remove when workflow is no longer bitrotted
5052
DEPLOY: false
5153

@@ -102,7 +104,7 @@ jobs:
102104
- name: Upload artifact
103105
uses: actions/upload-pages-artifact@v3
104106
with:
105-
path: ${{ env.OUTPUT_PATH || "output/" }}
107+
path: ${{ env.OUTPUT_PATH }}
106108
deploy:
107109
concurrency:
108110
group: "pages"

0 commit comments

Comments
 (0)