-
Notifications
You must be signed in to change notification settings - Fork 95
65 lines (50 loc) · 1.37 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
on:
push:
branches:
- gcp-deploy
env:
SITE_URL: https://color.stage.mozaws.net/
ADDON_URL: testing.html
jobs:
build_test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: 14
- 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
deploy_gcp:
environment: stage
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__