-
Notifications
You must be signed in to change notification settings - Fork 0
76 lines (66 loc) · 1.89 KB
/
deploy.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
name: Gatsby Build & Deploy
on:
workflow_dispatch:
push:
branches:
- main
- dev
repository_dispatch:
types:
- deploy
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set Node 20
uses: actions/setup-node@v2
with:
node-version: 20
- name: Check Yarn Cache
id: cache-yarn
uses: actions/cache@v2
env:
cache-name: cache-yarn
with:
path: |
node_modules
.yarn/cache
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Check Gatsby Cache
uses: actions/cache@v2
id: gatsby-cache-folder
with:
path: .cache
key: ${{ runner.os }}-cache-site
restore-keys: |
${{ runner.os }}-cache-site
- name: Check Gatsby Public Folder
uses: actions/cache@v2
id: gatsby-public-folder
with:
path: public/
key: ${{ runner.os }}-public-site
restore-keys: |
${{ runner.os }}-public-site
- name: Install dependencies
if: steps.cache-yarn.outputs.cache-hit != 'true'
run: yarn install --frozen-lockfile
- name: Install Gatsby CLI
run: yarn global add gatsby-cli
- name: Build
run: gatsby build --log-pages
env:
NODE_ENV: production
ENVIRONMENT: ${{ contains(github.ref, 'main') && 'production' || 'staging'}}
GATSBY_WP_GRAPH_API: ${{ secrets.GATSBY_WP_GRAPH_API }}
- name: Deploy
uses: JamesIves/[email protected]
with:
branch: gh-pages
folder: public