We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d9d278 commit 6602535Copy full SHA for 6602535
.github/workflows/pelican.yml
@@ -48,8 +48,6 @@ env:
48
REQUIREMENTS: "-r requirements.txt"
49
# FIXME: remove once official action can be used
50
OUTPUT_PATH: "output/"
51
- # FIXME: remove when workflow is no longer bitrotted
52
- DEPLOY: false
53
54
# Allow one concurrent deployment
55
concurrency:
@@ -106,10 +104,13 @@ jobs:
106
104
with:
107
105
path: ${{ env.OUTPUT_PATH }}
108
deploy:
+ env:
+ # FIXME: remove when workflow is no longer bitrotted
109
+ DEPLOY: false
110
111
group: "pages"
112
cancel-in-progress: false
- if: env.DEPLOY
113
+ if: ${{ env.DEPLOY }}
114
environment:
115
name: github-pages
116
url: ${{ steps.deployment.outputs.page_url }}
0 commit comments