Skip to content

Commit

Permalink
Moving envs
Browse files Browse the repository at this point in the history
Trying a few more things before I give up on GH actions secrets. Moving the environment variables to be after the run command, as that's what I've seen in many examples. If that doesn't work, I'm going to try to move it to the jobs section of the workflow file.
  • Loading branch information
nataliejschultz committed Sep 19, 2023
1 parent 72e4b77 commit 60d2b6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/nominatim-docker-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ jobs:
run: echo Smoke test

- name: Test nominatim
run: docker-compose -f emission/integrationTests/docker-compose.yml up --exit-code-from web-server
env:
GEOFABRIK_QUERY_URL: "https://geocoding.geofabrik.de/${{ secrets.GEOFABRIK_API }}"
TEST_KEY: ${{ secrets.TEST_SECRET }}
TEST_ENVVAR: "https://geocoding.geofabrik.de/${{ secrets.TEST_SECRET }}"
TEST_STR: "https://geocoding.geofabrik.de/"
run: docker-compose -f emission/integrationTests/docker-compose.yml up --exit-code-from web-server

0 comments on commit 60d2b6b

Please sign in to comment.