-
Notifications
You must be signed in to change notification settings - Fork 15
81 lines (78 loc) · 2.07 KB
/
deploy-dev-viewer.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
77
78
79
80
81
---
name: Deploy viewer to Dev environment
on:
push:
branches: ["main"]
workflow_dispatch:
schedule:
# Run daily at 03:15 UTC (10:15/11:15 ET)
- cron: "15 3 * * *"
concurrency:
group: "viewer-dev"
cancel-in-progress: false
jobs:
build:
name: Build site
runs-on: ubuntu-latest
defaults:
run:
shell: bash
permissions:
contents: read
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 18
cache: "npm"
- name: Install global dependencies
run: |
npm install -g npm@latest
- name: Install npm dependencies
run: |
npm ci
- name: Build viewer
run:
npx lerna exec --include-dependencies --scope "@easydynamics/oscal-viewer" -- npm run build
env:
PUBLIC_URL: "/"
- name: Archive viewer
uses: actions/upload-artifact@v4
with:
name: oscal-viewer
path: packages/oscal-viewer/build
deploy:
name: Deploy artifact
needs: ["build"]
runs-on: ubuntu-latest
defaults:
run:
shell: bash
permissions:
contents: read
id-token: write
environment:
name: development
steps:
- name: Download artifact
uses: actions/download-artifact@v3
with:
path: oscal-viewer
- name: Sign in to AWS
uses: aws-actions/configure-aws-credentials@v4
with:
role-to-assume: "${{ secrets.ROLE_ARN }}"
aws-region: "${{ vars.AWS_REGION }}"
- name: Deploy files
run: |
aws s3 sync . s3://${{ secrets.S3_BUCKET_NAME }} --delete
# The directory is doubled because of the trip through the GitHub artifact
# storage.
working-directory: oscal-viewer/oscal-viewer
- name: Invalidate CloudFront cache
run:
aws cloudfront create-invalidation --distribution-id ${{ secrets.DISTRIBUTION_ID }} --paths "/index.html"