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 8fc106d commit 0595b3bCopy full SHA for 0595b3b
.github/workflows/build-firmware.yml
@@ -37,6 +37,7 @@ jobs:
37
run: |
38
# Create container with source mounted
39
docker run -d --name s2t-build \
40
+ --user $(id -u):$(id -g) \
41
-v ${{ github.workspace }}:/workspaces/Speech2Touch \
42
-w /workspaces/Speech2Touch \
43
s2t-builder:latest \
@@ -76,6 +77,9 @@ jobs:
76
77
docker cp s2t-build:/workspaces/Speech2Touch/build/Release/Speech2Touch.map \
78
${{ github.workspace }}/build/Release/Speech2Touch.map
79
80
+ # Ensure correct ownership
81
+ sudo chown -R $(id -u):$(id -g) ${{ github.workspace }}/build/Release/
82
+
83
# Stop and remove container
84
docker stop s2t-build
85
docker rm s2t-build
0 commit comments