Skip to content

Merge pull request #226 from rh-aiservices-bu/dev #21

Merge pull request #226 from rh-aiservices-bu/dev

Merge pull request #226 from rh-aiservices-bu/dev #21

Workflow file for this run

name: Publish to GitHub Pages
on:
push:
branches: [main]
workflow_dispatch:
concurrency:
group: pages
cancel-in-progress: true
permissions:
contents: read
pages: write
id-token: write
jobs:
build:
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
ref: main
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: '18'
- name: Install Antora
run: npm i antora
- name: Generate Site
run: npx antora default-site.yml
- name: Debug directory structure
run: |
echo "Current working directory:"
pwd
echo "List all files and directories:"
ls -alR .
- name: Setup Pages
uses: actions/configure-pages@v4
- name: find where the files are
run: |
pwd
#ls -alR .
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: content/www
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4