Skip to content

Commit 8845037

Browse files
committed
Fix GitHub Actions workflow: update artifact path and Keycloak service configuration
- Fix Next.js build artifact path from web/.next to web/build (matches distDir config) - Fix Keycloak service: remove invalid 'command' field, use --entrypoint in options - Add KC_DB=dev-file for in-memory H2 database - Configure Keycloak to start in dev mode via entrypoint
1 parent 283a8f4 commit 8845037

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/tests.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,9 @@ jobs:
9191
--health-timeout 10s
9292
--health-retries 30
9393
--health-start-period 40s
94-
--entrypoint /opt/keycloak/bin/kc.sh start-dev
94+
--entrypoint /bin/sh
95+
-c
96+
"/opt/keycloak/bin/kc.sh start-dev"
9597
ports:
9698
- 8080:8080
9799

0 commit comments

Comments
 (0)