-
Notifications
You must be signed in to change notification settings - Fork 0
59 lines (48 loc) · 1.37 KB
/
BuildAndDeploy.yml
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
name: Build and Deploy
on:
push:
branches: ['main']
jobs:
build:
environment: github-pages
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [19.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Setup Secrets
env:
REACT_APP_ENABLE_ANALYTICS: ${{ secrets.REACT_APP_ENABLE_ANALYTICS }}
run: |
touch .env
echo REACT_APP_ENABLE_ANALYTICS="$REACT_APP_ENABLE_ANALYTICS" >> .env
- name: Install packages
run: |
npm ci --force
- name: Rebuild SEO
run: |
npm run seo
- name: Build TS
run: |
PUBLIC_URL="." npm run build
- name: Edit .gitignore
run: |
cd public
echo "/github-pages-deploy-action-temp-deployment-folder" > ./.gitignore
echo "" >> ./.gitignore
echo "preload.js" >> ./.gitignore
echo "electron.js" >> ./.gitignore
- name: Add .nojekyll
run: |
cd public
touch .nojekyll
- name: Deploy to GitHub Pages
uses: JamesIves/[email protected]
with:
folder: build # The folder the action should deploy.