update env file with localhost before building
All checks were successful
Build And Publish Docker / build (push) Successful in 39m28s
All checks were successful
Build And Publish Docker / build (push) Successful in 39m28s
This commit is contained in:
parent
4d379a5d9b
commit
6a75979208
1 changed files with 9 additions and 0 deletions
|
@ -25,6 +25,15 @@ jobs:
|
|||
username: ${{ secrets.REGISTRY_USER }}
|
||||
password: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
|
||||
|
||||
- name: Set ENV
|
||||
run: |
|
||||
rm ./valhalla-app/.env
|
||||
echo "SKIP_PREFLIGHT_CHECK=true" >> ./valhalla-app/.env
|
||||
echo "REACT_APP_VALHALLA_URL=http://localhost:8002" >> ./valhalla-app/.env
|
||||
echo "REACT_APP_NOMINATIM_URL=https://nominatim.openstreetmap.org" >> ./valhalla-app/.env
|
||||
echo "REACT_APP_TILE_SERVER_URL=\"https://tile.openstreetmap.org/{z}/{x}/{y}.png\"" >> ./valhalla-app/.env
|
||||
echo "REACT_APP_CENTER_COORDS=\"33.76471961134097,-84.34884911233736\"" >> ./valhalla-app/.env
|
||||
|
||||
- name: Build and Push
|
||||
uses: docker/build-push-action@v4
|
||||
with:
|
||||
|
|
Loading…
Add table
Reference in a new issue