From 60d2b6b7d1fb78658a5e2ea6aeaa0bd4f928eb89 Mon Sep 17 00:00:00 2001 From: Natalie Schultz <90212258+nataliejschultz@users.noreply.github.com> Date: Tue, 19 Sep 2023 16:42:48 -0600 Subject: [PATCH] Moving envs 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. --- .github/workflows/nominatim-docker-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/nominatim-docker-test.yml b/.github/workflows/nominatim-docker-test.yml index 4f4ea3b6d..fbae2678e 100644 --- a/.github/workflows/nominatim-docker-test.yml +++ b/.github/workflows/nominatim-docker-test.yml @@ -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