Skip to content

Commit

Permalink
🔨 Add REACT_APP_WS_URL
Browse files Browse the repository at this point in the history
  • Loading branch information
djabarovgeorge committed Apr 26, 2022
1 parent 0bbaa71 commit 7485c93
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/dev-deploy-web.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ jobs:
run: |
touch .env
echo REACT_APP_API_URL="https://dev.api.novu.co" >> .env
echo REACT_APP_WS_URL="https://dev.ws.novu.co" >> .env
echo REACT_APP_WIDGET_EMBED_PATH="https://dev.embed.novu.co/embed.umd.min.js" >> .env
echo REACT_APP_NOVU_APP_ID=${{ secrets.NOVU_APP_ID }} >> .env
echo REACT_APP_SENTRY_DSN="https://[email protected]/6250907" >> .env
Expand All @@ -71,6 +72,7 @@ jobs:
- name: Build
env:
REACT_APP_API_URL: https://dev.api.novu.co
REACT_APP_WS_URL: https://dev.ws.novu.co
REACT_APP_WIDGET_EMBED_PATH: https://dev.embed.novu.co/embed.umd.min.js
REACT_APP_NOVU_APP_ID: ${{ secrets.NOVU_APP_ID }}
REACT_APP_SENTRY_DSN: https://[email protected]/6250907
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dev-deploy-widget.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ jobs:
run: |
touch .env
echo REACT_APP_API_URL="https://dev.api.novu.co" >> .env
echo REACT_APP_SENTRY_DSN="https://[email protected]/625116" >> .env
echo REACT_APP_WS_URL="https://dev.ws.novu.co" >> .env
echo REACT_APP_SENTRY_DSN="https://[email protected]/625116" >> .env
echo REACT_APP_ENVIRONMENT=dev >> .env
- name: Envsetup
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/prod-deploy-web.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ jobs:
run: |
touch .env
echo REACT_APP_API_URL="https://api.novu.co" >> .env
echo REACT_APP_WS_URL="https://ws.novu.co" >> .env
echo REACT_APP_WIDGET_EMBED_PATH="https://embed.novu.co/embed.umd.min.js" >> .env
echo REACT_APP_NOVU_APP_ID=${{ secrets.NOVU_APP_ID }} >> .env
echo REACT_APP_SENTRY_DSN="https://[email protected]/6250907" >> .env
Expand All @@ -69,6 +70,7 @@ jobs:
- name: Build
env:
REACT_APP_API_URL: https://api.novu.co
REACT_APP_WS_URL: https://ws.novu.co
REACT_APP_WIDGET_EMBED_PATH: https://embed.novu.co/embed.umd.min.js
REACT_APP_NOVU_APP_ID: ${{ secrets.NOVU_APP_ID }}
REACT_APP_SENTRY_DSN: https://[email protected]/6250907
Expand Down

0 comments on commit 7485c93

Please sign in to comment.