mirror of
https://github.com/linuxserver/nano-metadata.git
synced 2026-02-20 08:40:37 +08:00
25 lines
546 B
YAML
25 lines
546 B
YAML
name: Publish GH Pages
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
jobs:
|
|
build-and-deploy:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout 🛎️
|
|
uses: actions/checkout@v2
|
|
with:
|
|
persist-credentials: false
|
|
|
|
- name: Install and Build 🔧
|
|
run: |
|
|
npm install
|
|
npm run build
|
|
|
|
- name: Deploy 🚀
|
|
uses: JamesIves/github-pages-deploy-action@releases/v3
|
|
with:
|
|
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
|
|
BRANCH: gh-pages
|
|
FOLDER: dist
|