Skip to content

Commit

Permalink
Fix FRONTEND_URL variable assignment in deploy.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
tobifra committed Feb 19, 2024
1 parent d941e21 commit 95d7b20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/deploy/deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ sed -ri "s~^MIDATA_CLIENT_UID=.*$~MIDATA_CLIENT_UID=$MIDATA_CLIENT_UID~" .env
sed -ri "s~^MIDATA_CLIENT_SECRET=.*$~MIDATA_CLIENT_SECRET=$MIDATA_CLIENT_SECRET~" .env
sed -ri "s~^MIDATA_REDIRECT_URI=.*$~MIDATA_REDIRECT_URI=$FRONTEND_URL/login~" .env

sed -ri "s~^FRONTEND_URL=.*$~FRONTEND_URI=$FRONTEND_URL~" .env
sed -ri "s~^FRONTEND_URL=.*$~FRONTEND_URL=$FRONTEND_URL~" .env

docker compose run --no-deps --entrypoint "composer install --no-dev" backend

Expand Down

1 comment on commit 95d7b20

@carlobeltrame
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍 merci

Please sign in to comment.