Skip to content

Commit 98914bc

Browse files
authored
fix: Initial admin account (#244)
1 parent 5dffbf2 commit 98914bc

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

.github/workflows/test.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,9 @@ jobs:
7070
services:
7171
nginxproxymanager:
7272
image: docker.io/jc21/nginx-proxy-manager:latest
73+
env:
74+
INITIAL_ADMIN_EMAIL: 'admin@example.com'
75+
INITIAL_ADMIN_PASSWORD: 'changeme'
7376
ports:
7477
- 80:80
7578
- 81:81
@@ -100,8 +103,8 @@ jobs:
100103
- name: Run Acceptance Tests
101104
run: go test -v -cover ./internal/provider/
102105
env:
103-
NGINXPROXYMANAGER_URL: "http://localhost:81"
104-
NGINXPROXYMANAGER_USERNAME: "admin@example.com"
105-
NGINXPROXYMANAGER_PASSWORD: "changeme"
106-
TF_ACC: "1"
106+
NGINXPROXYMANAGER_URL: 'http://localhost:81'
107+
NGINXPROXYMANAGER_USERNAME: 'admin@example.com'
108+
NGINXPROXYMANAGER_PASSWORD: 'changeme'
109+
TF_ACC: '1'
107110
timeout-minutes: 10

0 commit comments

Comments
 (0)