Skip to content

Commit

Permalink
Replacing secret
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
nataliejschultz committed Oct 19, 2023
1 parent fa508ad commit a6be71a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/nominatim-docker-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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


0 comments on commit a6be71a

Please sign in to comment.