forked from acaldas/document-model-electron
-
Notifications
You must be signed in to change notification settings - Fork 3
42 lines (38 loc) · 1.74 KB
/
build-and-deploy-arbitrum-prod.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
name: Deploy Connect to Arbitrum Production
on:
push:
branches: [deployments/arbitrum]
env:
HUSKY: 0
jobs:
build:
environment: Arbitrum Production
runs-on: ubuntu-latest
steps:
# Check-out your repository.
- name: Checkout
uses: actions/checkout@v2
- name: Build, Push and Release APP to Heroku. # Your custom step name
uses: gonuit/heroku-docker-deploy@v1.3.3
with:
email: ${{ secrets.HEROKU_EMAIL }}
heroku_api_key: ${{ secrets.HEROKU_API_KEY }}
heroku_app_name: ${{ secrets.HEROKU_APP_NAME }}
docker_options: >-
--build-arg BASE_PATH=/arbitrum/connect
--build-arg VITE_BASE_HREF=/arbitrum/connect/
--build-arg VITE_ROUTER_BASENAME=/arbitrum/connect
--build-arg VITE_SENTRY_DSN=${{ secrets.SENTRY_DSN }}
--build-arg VITE_SENTRY_ENV=${{ secrets.SENTRY_ENV }}
--build-arg VITE_ENABLED_EDITORS=arbitrum/ltip-grantee,arbitrum/stip-grantee
--build-arg VITE_DISABLE_ADD_PUBLIC_DRIVES=true
--build-arg VITE_DISABLE_ADD_CLOUD_DRIVES=true
--build-arg VITE_DISABLE_ADD_LOCAL_DRIVES=true
--build-arg VITE_DISABLE_DELETE_PUBLIC_DRIVES=true
--build-arg VITE_DISABLE_DELETE_CLOUD_DRIVES=true
--build-arg VITE_DISABLE_DELETE_LOCAL_DRIVES=true
--build-arg VITE_LOCAL_DRIVES_ENABLED=false
--build-arg VITE_DEFAULT_DRIVES_URL=https://apps.powerhouse.io/arbitrum/switchboard/d/arbitrum-ltipp-grantees,https://apps.powerhouse.io/arbitrum/switchboard/d/arbitrum-stip-grantees
--build-arg VITE_RENOWN_CHAIN_ID=42161
--build-arg VITE_HIDE_DOCUMENT_MODEL_SELECTION_SETTINGS=true
process_type: web