-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (37 loc) · 1.02 KB
/
build.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
name: Build & Deploy
on:
push:
schedule:
- cron: "0 20 * * *"
jobs:
build:
name: Build
if: github.ref != 'refs/heads/develop'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4
- uses: actions/setup-node@v3
with:
node-version: 18
- run: |
yarn install --immutable
yarn build
env:
GOODREADS_KEY: ${{ secrets.GOODREADS_KEY }}
deploy:
name: Deploy Gatsby Site
if: github.ref == 'refs/heads/develop'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4
- uses: actions/setup-node@v3
with:
node-version: 18
- run: |
yarn install --immutable
yarn build
yarn deploy
env:
GOODREADS_KEY: ${{ secrets.GOODREADS_KEY }}
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}