Skip to content

Pages

Pages #40

Workflow file for this run

# yaml-language-server: $schema=https://json.schemastore.org/github-workflow
---
name: Pages
on:
workflow_dispatch:
push:
tags:
- "v[0-9]+.[0-9]+.[0-9]+"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./
with:
files: |
README.md
test/README.md
test/nested/readme.md
test/nested/twice/README.md
out_path: out
token: ${{ secrets.GITHUB_TOKEN }}
- run: cp -r ./images/ ./out/images/
- uses: actions/upload-pages-artifact@v3
with:
path: out
deploy:
needs: build
runs-on: ubuntu-latest
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- uses: actions/deploy-pages@v4
id: deployment