Skip to content

Commit

Permalink
Merge branch 'feature/10Security' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
Jaroslav380 committed Feb 20, 2025
2 parents f47833a + 971a4b1 commit 6ec248c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ jobs:
env:
SECRET_JWT_HASH: ${{ secrets.SECRET_JWT_HASH }}
SECRET_DEFAULT_PW: ${{ secrets.SECRET_DEFAULT_PW }}
SECRET_ADMIN_NAME: ${{ secrets.SECRET_ADMIN_NAME }}

outputs:
branch_name: ${{ steps.branch.outputs.branch_name }}
Expand Down Expand Up @@ -42,7 +43,7 @@ jobs:
- name: Run integrationTests
run: |
docker run -d --name gamertrack-test-container -p 8080:8080 -e SECRET_JWT_HASH=${{ secrets.SECRET_JWT_HASH }} -e SECRET_DEFAULT_PW=${{ secrets.SECRET_DEFAULT_PW }} gamertrack-war:latest
docker run -d --name gamertrack-test-container -p 8080:8080 -e SECRET_JWT_HASH=${{ secrets.SECRET_JWT_HASH }} -e SECRET_DEFAULT_PW=${{ secrets.SECRET_DEFAULT_PW }} -e SECRET_ADMIN_NAME=${{ secrets.SECRET_ADMIN_NAME }} gamertrack-war:latest
until curl -s http://localhost:8080/gepardec-gamertrack/api/v1/health | grep -q "running"; do
echo "Waiting for the Application..."
Expand Down

0 comments on commit 6ec248c

Please sign in to comment.