We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c25f712 commit cfdd239Copy full SHA for cfdd239
.github/workflows/ci.yml
@@ -16,6 +16,9 @@ jobs:
16
docker build backend -t decompme_backend
17
- name: Run tests
18
run: |-
19
+ # NOTE: CI does not run as 'ubuntu' user
20
+ export USER_1000=$(getent passwd 1000 | cut -d: -f1)
21
+ sudo chown -R "${USER_1000}:${USER_1000}" .
22
docker run \
23
-v $(pwd):/decomp.me \
24
--entrypoint /bin/bash \
0 commit comments