-
Notifications
You must be signed in to change notification settings - Fork 1
96 lines (81 loc) · 2.65 KB
/
build-dev.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
name: Dev build
on:
push:
branches: [ main ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v2
with:
path: node_modules
key: ${{ runner.os }}-node_modules-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node_modules-
- name: Install dependencies
run: npm install
- name: Build
env:
GOOGLE_API_KEY: ${{ secrets.GOOGLE_API_KEY_DEV }}
FIREBASE_API_KEY: ${{ secrets.FIREBASE_API_KEY_DEV }}
STRIPE_API_KEY: ${{ secrets.STRIPE_TEST_KEY }}
FEATURED_ARCHIVES: ${{ secrets.FEATURED_ARCHIVES_DEV }}
RECAPTCHA_API_KEY: ${{ secrets.RECAPTCHA_API_KEY_DEV }}
STELA_DOMAIN: ${{ secrets.STELA_DOMAIN_DEV }}
MIXPANEL_TOKEN: ${{ secrets.MIXPANEL_TOKEN_DEV }}
run: npm run build:dev
- name: Archive `dist`
uses: actions/upload-artifact@v2
with:
name: dist
path: dist
upload-sourcemaps:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Sentry CLI
uses: mathieu-bour/[email protected]
with:
token: ${{ secrets.SENTRY_TOKEN }}
organization: permanentorg
project: mdot
- name: Download dist
uses: actions/download-artifact@v2
with:
name: dist
path: dist
- name: Upload sourcemaps
shell: bash
run: |
cp -r dist/mdot dist/app
cp -r dist/mdot dist/share
cp -r dist/mdot dist/p
declare -x VERSION=mdot@$(jq -r '.version' package.json)
sentry-cli releases set-commits $VERSION --auto
sentry-cli releases files $VERSION upload-sourcemaps --validate --log-level info --strip-common-prefix ./dist/ --ignore mdot
upload-code:
needs: build
runs-on: ubuntu-latest
steps:
- name: Download dist
uses: actions/download-artifact@v2
with:
name: dist
path: dist
- name: Create a tar archive
run: |
cd ..
mkdir mdot
mv web-app/dist mdot/dist
tar -czvf mdot.tar.gz mdot
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: ${{ secrets.AWS_DEFAULT_REGION }}
- name: Copy package to S3
run: aws s3 cp ../mdot.tar.gz s3://permanent-repos/dev/mdot.tar.gz