2021-07-18 18:54:00 +03:00
|
|
|
name: Deploy to GitHub Pages
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
2023-05-29 03:44:08 +03:00
|
|
|
- v4-alpha
|
2021-07-18 18:54:00 +03:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
deploy:
|
2023-05-29 03:44:08 +03:00
|
|
|
runs-on: ubuntu-22.04
|
|
|
|
permissions:
|
|
|
|
contents: write
|
2021-07-18 18:54:00 +03:00
|
|
|
steps:
|
2023-05-29 03:44:08 +03:00
|
|
|
- uses: actions/checkout@v3
|
2022-05-03 08:51:15 +03:00
|
|
|
with:
|
2023-05-29 03:44:08 +03:00
|
|
|
fetch-depth: 0
|
2021-07-18 18:54:00 +03:00
|
|
|
|
2023-05-29 03:44:08 +03:00
|
|
|
- name: Setup Node
|
|
|
|
uses: actions/setup-node@v3
|
2021-07-18 18:54:00 +03:00
|
|
|
with:
|
2023-05-29 03:44:08 +03:00
|
|
|
node-version: '18'
|
2021-07-18 18:54:00 +03:00
|
|
|
|
2023-05-29 03:44:08 +03:00
|
|
|
- name: Cache dependencies
|
|
|
|
uses: actions/cache@v3
|
2021-07-18 18:54:00 +03:00
|
|
|
with:
|
2023-05-29 03:44:08 +03:00
|
|
|
path: ~/.npm
|
|
|
|
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-node-
|
2021-07-18 18:54:00 +03:00
|
|
|
|
2023-05-29 03:44:08 +03:00
|
|
|
- run: npm ci
|
|
|
|
|
|
|
|
- name: Build Quartz
|
|
|
|
run: npx quartx build
|
2021-07-18 18:54:00 +03:00
|
|
|
|
|
|
|
- name: Deploy
|
|
|
|
uses: peaceiris/actions-gh-pages@v3
|
|
|
|
with:
|
|
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
publish_dir: ./public
|