-
Notifications
You must be signed in to change notification settings - Fork 95
78 lines (62 loc) · 1.92 KB
/
deploy-gcp.yaml
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
on:
push:
branches:
- gcp-deploy
jobs:
build_test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: 14
- name: Genreate env variables
id : env
run: |
if {github.ref == 'refs/heads/master'}; then
SITE_URL="https://color.firefox.com/"
ADDON_URL="https://addons.mozilla.org/firefox/addon/firefox-color/"
echo "prod" >> $GITHUB_OUPUT
else
SITE_URL="https://color.stage.mozaws.net/"
ADDON_URL="testing.html"
echo "stage" >> $GITHUB_OUPUT
fi
echo "SITE_URL=$SITE_URL" >> $GITHUB_ENV
echo "ADDON_URL=$ADDON_URL" >> $GITHUB_ENV
- name: Install dependencies
run: npm ci
- name: Run app lint
run: npm run lint
- name: Run app tests
run: npm run build
- name: Create xpi
run: npm run xpi
- name: Run Vaildate
run: npm run validate
- name: npm run test
run: npm run test
outputs:
env: ${{ steps.env.outputs.GITHUB_OUPUT }}
deploy_gcp:
if: ${{ needs.build_test.outputs.env == 'stage' }}
environment: production
needs: build_test
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: 14
- name: set up gcloud
uses: google-github-actions/setup-gcloud@v0.2.0
with:
credentials_json: ${{ secrets.GCP_SA_KEY_STAGE }}
- name: Upload web assets to GCS
run: gsutil rsync -x __version__ -r build/web/* gs://${{ vars.GCS_BUCKET }}
- name: Upload version to GCS
run: gsutil cp build/web/__version__ gs://${{ vars.GCS_BUCKET }}/__version__