Skip to content

Commit 411b99f

Browse files
committed
fix: update docs site for the hiero organization
Signed-off-by: Nathan Klick <[email protected]> # Conflicts: # .github/workflows/flow-hugo-publish.yaml
1 parent ec1a25f commit 411b99f

File tree

2 files changed

+11
-9
lines changed

2 files changed

+11
-9
lines changed

Diff for: .github/workflows/flow-hugo-publish.yaml

+10-8
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,9 @@ defaults:
5858

5959
jobs:
6060
# Build job
61-
Build:
61+
build:
62+
name: Build
6263
runs-on: solo-linux-medium
63-
6464
steps:
6565
- name: Harden Runner
6666
uses: step-security/harden-runner@c6295a65d1254861815972266d5933fd6e532bdf # v2.11.1
@@ -103,7 +103,7 @@ jobs:
103103
# Upload the built site to GitHub Pages
104104
- name: Upload Pages Artifact
105105
uses: actions/upload-pages-artifact@56afc609e74202658d3ffba0e8f6dda462b719fa # v3.0.1
106-
if: ${{ endsWith(github.ref, 'main') }}
106+
if: ${{ endsWith(github.ref, 'nonExisting') }}
107107
with:
108108
path: ./docs/site/public
109109

@@ -115,14 +115,16 @@ jobs:
115115
path: ./docs/site/public
116116

117117
# 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
121121
environment:
122122
name: github-pages
123123
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') }}
126128
steps:
127129
- name: Harden Runner
128130
uses: step-security/harden-runner@c6295a65d1254861815972266d5933fd6e532bdf # v2.11.1

Diff for: docs/site/config.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
baseURL = 'https://hashgraph.github.io/solo'
1+
baseURL = 'https://solo.hiero.org/'
22
languageCode = 'en-us'
33
title = 'Solo'
44
theme = "hugo-geekdoc"

0 commit comments

Comments
 (0)