File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -80,10 +80,10 @@ jobs:
80
80
${{ fromJson(steps.zoteroVersion.outputs.headers).last-modified-version }}
81
81
82
82
# ----------------------------------------------------------------------------
83
- # Deploy the website. This job is conditional, we will always run it on a
83
+ # Build the website. This job is conditional, we will always run it on a
84
84
# push or if on a scheduled run the cache was determined to be out of date.
85
85
#
86
- deploy :
86
+ build :
87
87
needs : check
88
88
runs-on : ubuntu-latest
89
89
if : github.event_name == 'push' || needs.check.outputs.cacheHit != 'true'
@@ -159,6 +159,14 @@ jobs:
159
159
with :
160
160
path : ./public
161
161
162
+
163
+ deploy :
164
+ environment :
165
+ name : github-pages
166
+ url : ${{ steps.deployment.outputs.page_url }}
167
+ runs-on : ubuntu-latest
168
+ needs : build
169
+ steps :
162
170
- name : Deploy to GitHub Pages
163
171
id : deployment
164
172
uses : actions/deploy-pages@v4
You can’t perform that action at this time.
0 commit comments