From a6be71aa75e675eddf447c09ee1fe854f709d4a5 Mon Sep 17 00:00:00 2001 From: Natalie Schultz <90212258+nataliejschultz@users.noreply.github.com> Date: Thu, 19 Oct 2023 14:09:34 -0600 Subject: [PATCH] Replacing secret Replacing the API key with a known working repo secret to see if the problem is GH accessing the repo secrets, or something with the way the secret was put in. --- .github/workflows/nominatim-docker-test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/nominatim-docker-test.yml b/.github/workflows/nominatim-docker-test.yml index 26595e706..07e43433b 100644 --- a/.github/workflows/nominatim-docker-test.yml +++ b/.github/workflows/nominatim-docker-test.yml @@ -5,8 +5,8 @@ name: nominatim-docker-test on: workflow_call: secrets: - GEOFABRIK_API: - description: "Geofabrik API Key" + DOCKER_USER: + description: "Docker user known working secret test" required: true push: paths: @@ -41,6 +41,6 @@ jobs: # Passes the geofabrik key into the docker-compose.yml file. - name: Test nominatim.py - run: GFBK_KEY=${{ secrets.GEOFABRIK_API }} docker-compose -f emission/integrationTests/docker-compose.yml up --exit-code-from web-server + run: GFBK_KEY=${{ secrets.DOCKER_USER }} docker-compose -f emission/integrationTests/docker-compose.yml up --exit-code-from web-server