Remove no-proxy argument from Keycloak server (#2324)

This commit is contained in:
Jon Koops 2022-03-22 12:01:32 +01:00 committed by GitHub
parent 2d3820f0eb
commit b400b2f312
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -52,8 +52,10 @@ jobs:
- name: Start Keycloak Server
working-directory: ${{ env.KEYCLOAK_SERVER_BIN }}
run: |
KEYCLOAK_ADMIN=admin KEYCLOAK_ADMIN_PASSWORD=admin ./kc.sh start-dev --proxy=none -Dkeycloak.profile.feature.admin2=enabled -Dkeycloak.profile.feature.declarative_user_profile=enabled &
run: ./kc.sh start-dev -Dkeycloak.profile.feature.admin2=enabled -Dkeycloak.profile.feature.declarative_user_profile=enabled &
env:
KEYCLOAK_ADMIN: admin
KEYCLOAK_ADMIN_PASSWORD: admin
- name: Set up Node
uses: actions/setup-node@v2