-
Notifications
You must be signed in to change notification settings - Fork 2
36 lines (33 loc) · 973 Bytes
/
github-page.yml
File metadata and controls
36 lines (33 loc) · 973 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
26
27
28
29
30
31
32
33
34
35
36
##############################################
# FILE GENERATED AUTOMATICALLY FROM TERRAFORM
# THIS FILE SHOULD NOT BE EDITED BY HAND
##############################################
name: Build and Deploy
on:
push:
branches:
- main
jobs:
build-and-deploy:
runs-on: ubuntu-latest
env:
HUSKY_SKIP_HOOKS: 1
HUSKY: 0
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3.6.0
- name: Setup node ⚙️
uses: actions/setup-node@v3.8.1
- name: Install ⚙️️
run: npm ci
- name: Build 🔧
run: npm run build
- name: Deploy 🚀
uses: peaceiris/actions-gh-pages@v3.9.3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: .
user_name: "github-actions[bot]"
user_email: "github-actions[bot]@users.noreply.github.com"
keep_files: true
exclude_assets: ".github,node_modules,.gitignore,git"