-
Notifications
You must be signed in to change notification settings - Fork 0
52 lines (41 loc) · 1.11 KB
/
githubActions.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
name: NodeJS with Webpack
permissions:
contents: write
on:
push:
branches: ['main']
# schedule:
# 2am everyday
# - cron: '0 2 * * *'
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Setup Secrets
env:
GOOGLE_AUTH_KEY: ${{ secrets.GOOGLE_AUTH_KEY }}
AIRTABLE_APIKEY: ${{ secrets.AIRTABLE_APIKEY }}
run: |
touch .env
echo GOOGLE_AUTH_KEY="$GOOGLE_AUTH_KEY" >> .env
echo AIRTABLE_API_KEY="$AIRTABLE_APIKEY" >> .env
- name: Build
run: |
npm ci
npm run build
- name: Add more items to gitIgnore
run: |
echo webpack/* >> .gitignore
- name: Deploy to GitHub Pages
uses: JamesIves/github-pages-deploy-action@v4.3.4
with:
folder: ./ # The folder the action should deploy.