Skip to content

Commit f9402f7

Browse files
committed
giduid
1 parent 36d6043 commit f9402f7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/test-unit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
- uses: actions/checkout@v4
88
- name: compose up
99
run: |-
10-
docker compose -f docker-compose.unit.yml up -d --wait --build
10+
UID="$(id -u)" GID="$(id -g)" docker compose -f docker-compose.unit.yml up -d --wait --build
1111
- name: show logs
1212
if: failure()
1313
run: |-

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
- uses: actions/checkout@v4
88
- name: compose up
99
run: |-
10-
docker compose up -d --wait --build
10+
UID="$(id -u)" GID="$(id -g)" docker compose up -d --wait --build
1111
- name: show logs
1212
if: failure()
1313
run: |-

0 commit comments

Comments
 (0)