-
Notifications
You must be signed in to change notification settings - Fork 5
25 lines (25 loc) · 870 Bytes
/
pages.yml
File metadata and controls
25 lines (25 loc) · 870 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
name: Deploy interpunct.info
on:
workflow_dispatch: {}
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v2.3.1
with:
fetch-depth: 10
- uses: actions/setup-node@v2
with:
node-version: "16"
- name: Install and Build 🔧
run: |
yarn install
yarn lint
yarn docs
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@4.0.0
with:
branch: gh-pages # The branch the action should deploy to.
folder: docs # The folder the action should deploy.
clean: true # Automatically remove deleted files from the deploy branch