Merge pull request #83 from w3c/inplace-post-publication-fix #25
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
name: GitHub Pages Build & Deploy | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
- how-to-pages | |
jobs: | |
build_deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
cache: 'npm' | |
cache-dependency-path: how-to/package-lock.json | |
- name: Static content copy | |
run: | | |
mkdir ./_site | |
cp -r ./guidelines ./_site/guidelines | |
- name: Eleventy Build how-to pages | |
run: | | |
npm --prefix ./how-to/ ci | |
npm --prefix ./how-to/ run build:gh-pages | |
npm --prefix ./how-to/ run copy-to-root | |
- name: Deploy | |
uses: peaceiris/actions-gh-pages@v4 | |
with: | |
publish_dir: _site | |
publish_branch: gh-pages | |
github_token: ${{ secrets.GITHUB_TOKEN }} |