-
Notifications
You must be signed in to change notification settings - Fork 0
46 lines (40 loc) · 1.3 KB
/
fprd-deploy.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
name: 'Deploy PROD build'
on:
push:
branches:
- main
permissions:
actions: read
checks: write
contents: read
deployments: write
id-token: write
statuses: write
jobs:
deploy-affected-prod:
runs-on: ubuntu-latest
environment: fprd
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0 # Required to fetch range
- name: Get fusion token
id: 'get-fusion-token'
uses: ./.github/actions/get-fusion-token
with:
client-id: ${{secrets.AZURE_PROD_CLIENT_ID}}
tenant-id: ${{secrets.AZURE_TENANT_ID}}
resource-id: ${{secrets.AZURE_RESOURCE_PROD_ID}}
- name: PNPM setup
uses: ./.github/actions/pnpm-setup
- name: Build monorepo
run: pnpm ci:build
- name: Start summary
run: |
echo '# FPRD deployment summary' >> $GITHUB_STEP_SUMMARY
- name: 'Deploy affected apps to Fusion PROD'
shell: bash
env:
NODE_OPTIONS: "--max_old_space_size=12288"
run: npx turbo run fprd:deploy --filter=...[HEAD^] --concurrency 4 -- --token ${{ steps.get-fusion-token.outputs.token }} --ai '${{secrets.ai}}' --modelViewerConfig '${{vars.modelViewerConfig}}' --sha '${{github.sha}}'