-
Notifications
You must be signed in to change notification settings - Fork 3.9k
50 lines (46 loc) · 2.02 KB
/
prod-deploy-web.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
# This is a basic workflow to help you get started with Actions
name: Deploy PROD WEB
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
deploy_web_eu:
uses: ./.github/workflows/reusable-web-deploy.yml
with:
environment: Production
react_app_api_url: https://eu.api.novu.co
react_app_ws_url: https://eu.ws.novu.co
react_app_webhook_url: https://eu.webhook.novu.co
react_app_widget_embed_path: https://eu.embed.novu.co/embed.umd.min.js
react_app_sentry_dsn: https://[email protected]/6250907
react_app_environment: production
react_app_mail_server_domain: eu.inbound-mail.novu.co
react_app_hubspot_embed: 44416662
netlify_deploy_message: Prod deployment
netlify_alias: prod
netlify_gh_env: Production
netlify_site_id: d2e8b860-7016-4202-9256-ebca0f13259a
clerk_publishable_key: pk_live_Y2xlcmsuZXUuZGFzaGJvYXJkLm5vdnUuY28k
clerk_is_ee_auth_enabled: true
secrets: inherit
deploy_web_us:
uses: ./.github/workflows/reusable-web-deploy.yml
with:
environment: Production
react_app_api_url: https://api.novu.co
react_app_ws_url: https://ws.novu.co
react_app_webhook_url: https://webhook.novu.co
react_app_widget_embed_path: https://embed.novu.co/embed.umd.min.js
react_app_sentry_dsn: https://[email protected]/6250907
react_app_environment: production
react_app_mail_server_domain: inbound-mail.novu.co
react_app_hubspot_embed: 44416662
netlify_deploy_message: Prod deployment
netlify_alias: prod
netlify_gh_env: Production
netlify_site_id: 8639d8b9-81f9-44c3-b885-585a7fd2b5ff
clerk_publishable_key: pk_live_Y2xlcmsuZGFzaGJvYXJkLm5vdnUuY28k
clerk_is_ee_auth_enabled: true
secrets: inherit