-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Minor fix to doc publishing to GH Pages
How embarassing π Signed-off-by: Justin Kulikauskas <[email protected]>
- Loading branch information
1 parent
fc60c2d
commit e53d469
Showing
1 changed file
with
16 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,21 @@ defaults: | |
run: | ||
shell: bash | ||
|
||
permissions: | ||
# actions: write | ||
# checks: write | ||
contents: write | ||
# deployments: write | ||
id-token: write | ||
# issues: write | ||
# discussions: write | ||
# packages: write | ||
pages: write | ||
# pull-requests: write | ||
# repository-projects: write | ||
# security-events: write | ||
# statuses: write | ||
|
||
jobs: | ||
cleanliness: | ||
name: Run Cleanliness Checks | ||
|
@@ -97,7 +112,7 @@ jobs: | |
sleep 15 # Let it initialize | ||
echo "Downloading the generated doc site" | ||
wget -r -q -np -N -E -p -k 'http://localhost:8080/open-cluster-management.io/[email protected]' | ||
wget -r -q -np -N -E -p -k 'http://localhost:8080/open-cluster-management.io/[email protected]' || true | ||
kill -9 $DOC_PID | ||
echo "Bringing all the files into a gh-pages directory" | ||
|