We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56f1e4e commit 36676f6Copy full SHA for 36676f6
.github/workflows/linux_arch.yml
@@ -41,6 +41,7 @@ jobs:
41
docker run --rm \
42
-v ${{ github.workspace }}:/workspace \
43
-w /workspace \
44
+ --user root \
45
archlinux:latest \
46
bash -c "
47
git config --global --add safe.directory /workspace &&
@@ -50,7 +51,8 @@ jobs:
50
51
make debug &&
52
make &&
53
make WEBUI_USE_TLS=1 debug &&
- make WEBUI_USE_TLS=1
54
+ make WEBUI_USE_TLS=1 &&
55
+ chown -R $(id -u):$(id -g) /workspace
56
"
57
58
- name: Prepare Artifact
0 commit comments