-
Notifications
You must be signed in to change notification settings - Fork 3
49 lines (41 loc) · 1.12 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
40
41
42
43
44
45
46
47
48
49
name: Build App
on:
workflow_call:
inputs:
env:
required: true
type: string
upload:
required: false
type: boolean
default: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Branch
uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
cache: 'yarn'
- name: Install Packages
run: yarn install --immutable
- name: Nextjs Build Cache
uses: actions/cache@v3
with:
path: |
${{ github.workspace }}/.next/cache
key: ${{ runner.os }}-nextjs-${{ hashFiles('**/yarn.lock') }}-${{ hashFiles('**.[jt]s', '**.[jt]sx', '**.json') }}
restore-keys: |
${{ runner.os }}-nextjs-${{ hashFiles('**/yarn.lock') }}-
- name: Set .env
run: echo "${{ inputs.env }}" > .env.local
- name: Build
run: yarn build && yarn next export
- uses: actions/upload-artifact@v3
with:
name: built-app
path: out
if-no-files-found: error
retention-days: 7