File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -3,4 +3,6 @@ NEXT_PUBLIC_COINGECKO_API_URL=https://api.coingecko.com/api/v3
3
3
NEXT_PUBLIC_CHROME_EXT_INSTALL_URL = https://github.com/forbole/forbole-x/releases/tag/v0.3.0
4
4
MAILGUN_HOST = smtp.mailgun.org
5
5
MAILGUN_PORT = 2525
6
+ MAILGUN_USER = secret
7
+ MAILGUN_KEY = secret
6
8
CONTACT_EMAIL = info@forbole.com
Original file line number Diff line number Diff line change 22
22
password : ${{ secrets.DOCKER_PASSWORD }}
23
23
- name : Update env variables
24
24
run : |
25
- echo MAILGUN_USER=${{ secrets.MAILGUN_USER }} >> .env
26
- echo MAILGUN_KEY=${{ secrets.MAILGUN_KEY }} >> .env
25
+ sed -i 's/ MAILGUN_USER=secret/MAILGUN_USER= ${{ secrets.MAILGUN_USER }}/g' .env
26
+ sed -i 's/ MAILGUN_KEY=secret/MAILGUN_KEY= ${{ secrets.MAILGUN_KEY }}/g' .env
27
27
- name : Build and push
28
28
id : docker_build
29
29
uses : docker/build-push-action@v2
You can’t perform that action at this time.
0 commit comments