Skip to content

Commit

Permalink
Merge pull request #235 from elmadev/dev
Browse files Browse the repository at this point in the history
chore(other): fix attempt for deploy script up path
  • Loading branch information
sunehs authored May 29, 2024
2 parents efa0d63 + 5afcaa4 commit 9c8ebb1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deployment-live.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
run: |
sed -i "s|https://apitest.elma.online/|${{ secrets.API_URL_LIVE }}|g" src/config.js
sed -i "s|'test/'|${{ secrets.S3_SUB_FOLDER_LIVE }}|g" src/config.js
sed -i "s|${url}u/|${{ secrets.UP_LIVE }}|g" src/config.js
sed -i "s|https://apitest.elma.online/u/|${{ secrets.UP_LIVE }}|g" src/config.js
sed -i "s|6Le-n9QUAAAAAG-3bYyysXddxwD6I6iJeDBTHf2r|${{ secrets.RECAPTCHA_LIVE }}|g" src/config.js
sed -i "s|hotJarId: 0|hotJarId: ${{ secrets.HOTJAR }}|g" src/config.js
Expand Down
2 changes: 1 addition & 1 deletion src/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const config = {
s3SubFolder,
dlUrl: `${url}dl/`,
api: `${url}api/`,
up: `${url}u/`,
up: `https://apitest.elma.online/u/`,
maps: 'AIzaSyDE8Prt4OybzNNxo1MzIn1XYNGxm9rI8Zk',
recaptcha: '6Le-n9QUAAAAAG-3bYyysXddxwD6I6iJeDBTHf2r',
maxUploadSize: 10485760,
Expand Down

0 comments on commit 9c8ebb1

Please sign in to comment.