-
Notifications
You must be signed in to change notification settings - Fork 0
65 lines (63 loc) · 2.42 KB
/
deploy-sandbox.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
name: Deploy to sandbox env
on:
push:
branches:
- sandbox
workflow_dispatch:
jobs:
deploy-to-sandbox-env:
runs-on: [ARM64, self-hosted, Linux]
environment: sandbox
permissions:
id-token: write
contents: read
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Assume happy-api deployment role
uses: aws-actions/configure-aws-credentials@v4
with:
aws-region: us-west-2
role-to-assume: ${{ secrets.AWS_ROLE_TO_ASSUME }}
role-duration-seconds: 1200
role-session-name: CzidGraphQLFederationUpdateSandbox
- name: Install happy
uses: chanzuckerberg/github-actions/.github/actions/install-happy@main
- name: Set version info
uses: chanzuckerberg/czid-graphql-federation-server/.github/actions/happy-config-set@main
with:
app_config_name: CZID_GQL_FED_GIT_SHA
app_config_value: ${{ github.sha }}
happy_env: sandbox
- name: Set CZ ID Rails API URL
uses: chanzuckerberg/czid-graphql-federation-server/.github/actions/happy-config-set@main
with:
app_config_name: API_URL
app_config_value: ${{ vars.API_URL}}
happy_env: sandbox
- name: Set CZ ID Entities URL
uses: chanzuckerberg/czid-graphql-federation-server/.github/actions/happy-config-set@main
with:
app_config_name: NEXTGEN_ENTITIES_URL
app_config_value: ${{ vars.NEXTGEN_ENTITIES_URL}}
happy_env: sandbox
- name: Set CZ ID Workflows URL
uses: chanzuckerberg/czid-graphql-federation-server/.github/actions/happy-config-set@main
with:
app_config_name: NEXTGEN_WORKFLOWS_URL
app_config_value: ${{ vars.NEXTGEN_WORKFLOWS_URL}}
happy_env: sandbox
- name: Set allowed CORS origins
uses: chanzuckerberg/czid-graphql-federation-server/.github/actions/happy-config-set@main
with:
app_config_name: ALLOWED_CORS_ORIGINS
app_config_value: ${{ vars.ALLOWED_CORS_ORIGINS}}
happy_env: sandbox
- name: Update sandbox
uses: chanzuckerberg/github-actions/.github/actions/deploy-happy-stack@v1.26.0
with:
tfe-token: ${{ secrets.TFE_TOKEN }}
env: ${{ vars.HAPPY_ENV }}
create-tag: true
stack-name: ${{ secrets.HAPPY_STACK_NAME }}
version-lock-file: .happy/version.lock