File tree 2 files changed +11
-9
lines changed
2 files changed +11
-9
lines changed Original file line number Diff line number Diff line change @@ -58,9 +58,9 @@ defaults:
58
58
59
59
jobs :
60
60
# Build job
61
- Build :
61
+ build :
62
+ name : Build
62
63
runs-on : solo-linux-medium
63
-
64
64
steps :
65
65
- name : Harden Runner
66
66
uses : step-security/harden-runner@c6295a65d1254861815972266d5933fd6e532bdf # v2.11.1
@@ -103,7 +103,7 @@ jobs:
103
103
# Upload the built site to GitHub Pages
104
104
- name : Upload Pages Artifact
105
105
uses : actions/upload-pages-artifact@56afc609e74202658d3ffba0e8f6dda462b719fa # v3.0.1
106
- if : ${{ endsWith(github.ref, 'main ') }}
106
+ if : ${{ endsWith(github.ref, 'nonExisting ') }}
107
107
with :
108
108
path : ./docs/site/public
109
109
@@ -115,14 +115,16 @@ jobs:
115
115
path : ./docs/site/public
116
116
117
117
# Deployment job
118
- Deploy :
119
- # Temporarily disabled publish to GitHub Pages
120
- if : ${{ endsWith(github.ref, 'nonExisting') }}
118
+ deploy :
119
+ name : Deploy
120
+ runs-on : solo-linux-medium
121
121
environment :
122
122
name : github-pages
123
123
url : ${{ steps.deployment.outputs.page_url }}
124
- runs-on : solo-linux-medium
125
- needs : Build
124
+ needs :
125
+ - build
126
+ # Temporarily disabled publish to GitHub Pages
127
+ if : ${{ endsWith(github.ref, 'nonExisting') }}
126
128
steps :
127
129
- name : Harden Runner
128
130
uses : step-security/harden-runner@c6295a65d1254861815972266d5933fd6e532bdf # v2.11.1
Original file line number Diff line number Diff line change 1
- baseURL = ' https://hashgraph.github.io/solo '
1
+ baseURL = ' https://solo.hiero.org/ '
2
2
languageCode = ' en-us'
3
3
title = ' Solo'
4
4
theme = " hugo-geekdoc"
You can’t perform that action at this time.
0 commit comments