Skip to content

Commit

Permalink
Merge pull request #128 from mathiascode/master
Browse files Browse the repository at this point in the history
Deploy manual with GitHub Actions
  • Loading branch information
bearbin committed Apr 23, 2024
2 parents 954ff03 + 3456fbb commit 5559187
Showing 1 changed file with 49 additions and 0 deletions.
49 changes: 49 additions & 0 deletions .github/workflows/pages.yml
@@ -0,0 +1,49 @@
name: Deploy manual

on:
push:
branches: [master]
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.12

- name: Install Python dependencies
run: python -m pip install html5validator

- name: Setup Pages
id: pages
uses: actions/configure-pages@v5

- name: Generate manual
run: |
python generate.py
html5validator --root out
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: ./out

deploy:
needs: build
# Grant GITHUB_TOKEN the permissions required to make a Pages deployment
permissions:
pages: write # to deploy to Pages
id-token: write # to verify the deployment originates from an appropriate source
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4

0 comments on commit 5559187

Please sign in to comment.