fix: run docker as runner user to fix artifact upload
Some checks failed
Build Mission PBO / pack (push) Failing after 16s
Build Mission PBO / deploy (push) Has been skipped

This commit is contained in:
2026-06-11 01:53:40 +02:00
parent d3db656725
commit eba2c13015

View File

@@ -19,6 +19,7 @@ jobs:
- name: Pack mission folder into PBO - name: Pack mission folder into PBO
run: | run: |
docker run --rm \ docker run --rm \
--user "$(id -u):$(id -g)" \
-v "${{ github.workspace }}:/workspace" \ -v "${{ github.workspace }}:/workspace" \
-w /workspace \ -w /workspace \
arwynfr/armake2:debian \ arwynfr/armake2:debian \
@@ -29,6 +30,7 @@ jobs:
- name: Verify PBO integrity - name: Verify PBO integrity
run: | run: |
docker run --rm \ docker run --rm \
--user "$(id -u):$(id -g)" \
-v "${{ github.workspace }}:/workspace" \ -v "${{ github.workspace }}:/workspace" \
-w /workspace \ -w /workspace \
arwynfr/armake2:debian \ arwynfr/armake2:debian \