Skip to content

Commit

Permalink
Still no luck, try another approach with a new .env file based on the…
Browse files Browse the repository at this point in the history
… one from make init.
  • Loading branch information
jonasbardino committed Mar 21, 2024
1 parent 371d799 commit 0288f9b
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,13 @@ jobs:
make test-doc
- name: Build images
run: |
echo "# NOTE: try absolute path to current dir to get docker ro-mount to work"
export "DOCKER_MIGRID_ROOT=$PWD"
make init
echo "# NOTE: try absolute path to current dir to get docker ro-mount to work" > ci.env
echo "DOCKER_MIGRID_ROOT=$PWD" >> ci.env
echo "" >> ci.env
grep -v DOCKER_MIGRID_ROOT .env >> ci.env
rm -f .env
mv ci.env .env
make dockerbuild
- name: Start services
run: |
Expand Down

0 comments on commit 0288f9b

Please sign in to comment.