-
Notifications
You must be signed in to change notification settings - Fork 0
59 lines (47 loc) · 1.48 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
name: ELE.com Deploy Steps
on:
release:
types: [published]
workflow_dispatch:
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2.3.4
- name: Setup Next.js Build Cache
uses: actions/cache@v3.2.4
with:
path: ${{ github.workspace }}/.next/cache
key: ${{ runner.os }}-nextjs-${{ hashFiles('**/package-lock.json') }}
- name: Read .nvmrc
run: echo ::set-output name=NVMRC::$(cat .nvmrc)
id: nvm
- name: Setup Node.js Version
uses: actions/setup-node@v2.1.5
with:
node-version: '${{ steps.nvm.outputs.NVMRC }}'
registry-url: 'https://registry.npmjs.org'
- name: Install Dependencies
run: |
npm ci
- name: Build Next.js Site
run: |
npm run build
- name: Test Next.js Site
run: |
npm run test
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v1.5.9
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: us-east-1
- name: Deploy Website
run: |
aws s3 sync out/ s3://equinelungexperts.com/www/
- name: Invalidate Cloudfront Cache
run: >
aws cloudfront create-invalidation
--distribution-id ${{ secrets.CLOUDFRONT_DISTRIBUTION_ID }}
--paths "/*"