generated from redhat-scholars/courseware-template
-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add workflow to publish showroom pages
- Loading branch information
Showing
1 changed file
with
48 additions
and
0 deletions.
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 |
---|---|---|
@@ -0,0 +1,48 @@ | ||
name: github pages | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: [main] | ||
paths-ignore: | ||
- "README.adoc" | ||
- ".gitignore" | ||
|
||
permissions: | ||
pages: write | ||
id-token: write | ||
|
||
concurrency: | ||
group: gh-pages | ||
cancel-in-progress: false | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: checkout | ||
uses: actions/checkout@v4 | ||
- name: configure pages | ||
uses: actions/configure-pages@v5 | ||
- name: setup node | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20.13.1 | ||
- name: install antora | ||
run: npm install --global @antora/[email protected] @antora/[email protected] | ||
- name: antora generate | ||
run: antora generate default-site.yml --stacktrace | ||
- name: upload pages artifact | ||
uses: actions/upload-pages-artifact@v3 | ||
with: | ||
path: www | ||
deploy: | ||
needs: build | ||
environment: | ||
name: github-pages | ||
url: ${{ steps.deployment.outputs.page_url }} | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: deploy github pages | ||
id: deployment | ||
uses: actions/deploy-pages@v4 |