tachiyomi-website/.github/workflows/deploy.yml
2023-07-19 18:45:27 +02:00

51 lines
1.1 KiB
YAML

name: Deploy
on:
workflow_dispatch: {}
push:
branches:
- v3-vitepress
env:
VITE_BASE: /kodo/
jobs:
deploy:
runs-on: ubuntu-latest
permissions:
contents: read
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 16
cache: npm
- name: Install and build
run: npm ci && npm run docs:build
- name: Configure pages
uses: actions/configure-pages@v2
- name: Upload pages artifact
uses: actions/upload-pages-artifact@v1
with:
path: src/.vitepress/dist
- name: Deploy
id: deployment
uses: actions/deploy-pages@v1