tachiyomi-website/.github/workflows/push.yml

54 lines
1.3 KiB
YAML
Raw Normal View History

name: Build and deploy website
on:
push:
branches:
- master
jobs:
build-deploy:
runs-on: ubuntu-latest
steps:
2022-01-11 15:10:42 +01:00
- name: Cancel previous runs
uses: styfle/cancel-workflow-action@0.9.1
with:
access_token: ${{ github.token }}
all_but_latest: true
- name: Checkout repository
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v2
with:
2021-12-08 03:09:30 +01:00
node-version: 16
- name: Check cache
uses: actions/cache@v2
id: npm-cache
with:
path: '**/node_modules'
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
- name: Install dependencies
if: steps.npm-cache.outputs.cache-hit != 'true'
run: npm install
- name: Build website
run: npm run build
- name: Add .nojekyll
2019-09-15 01:33:38 +02:00
run: touch ./public/.nojekyll
- name: Deploy website
uses: peaceiris/actions-gh-pages@v3
with:
deploy_key: ${{ secrets.ACTIONS_DEPLOY_KEY }}
publish_branch: gh-pages
publish_dir: ./public
user_name: "github-actions[bot]"
user_email: "github-actions[bot]@users.noreply.github.com"
commit_message: ${{ github.event.head_commit.message }}