Skip to content

Commit

Permalink
ci: use secrets
Browse files Browse the repository at this point in the history
  • Loading branch information
fiskrt authored Jul 1, 2024
1 parent 4212500 commit 3aac0b7
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,4 @@ jobs:
run: docker build -t my-image:latest .

- name: Run Docker container
# TODO: enable this when we have set the secrets
#run: docker run -e API_KEY=${{ secrets.RXN_API_KEY }} -e PROJ_ID=${{ secrets.RXN_PROJ_ID }} my-image:latest
run: docker run -e API_KEY=WRONG -e PROJ_ID=WRONG my-image:latest
run: docker run -e API_KEY=${{ secrets.RXN_API_KEY }} -e PROJ_ID=${{ secrets.RXN_PROJ_ID }} my-image:latest

0 comments on commit 3aac0b7

Please sign in to comment.