mirror of
https://github.com/tachiyomiorg/website.git
synced 2024-11-01 07:25:06 +01:00
32 lines
681 B
YAML
32 lines
681 B
YAML
name: Build and deploy website
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
jobs:
|
|
deploy:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v1
|
|
|
|
- name: Install Node v12
|
|
uses: actions/setup-node@v1
|
|
with:
|
|
node-version: 12
|
|
|
|
- name: Build website
|
|
run: |
|
|
npm install
|
|
npm run build
|
|
|
|
- name: Add nojekyll
|
|
run: touch ./public/.nojekyll
|
|
|
|
- name: Deploy website
|
|
uses: peaceiris/actions-gh-pages@v2.3.0
|
|
env:
|
|
ACTIONS_DEPLOY_KEY: ${{ secrets.ACTIONS_DEPLOY_KEY }}
|
|
PUBLISH_BRANCH: gh-pages
|
|
PUBLISH_DIR: ./public
|