diff options
| -rw-r--r-- | .github/workflows/ci.yml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 373f663..757909e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -75,6 +75,11 @@ jobs: - name: Package tarball run: | + # The docker build runs as root inside the container, leaving + # build/ root-owned on the runner. Fix up ownership so subsequent + # steps (tar write, artifact upload) can operate on it as the + # regular runner user. + sudo chown -R "$(id -u):$(id -g)" build cd build ARCHIVE_NAME="fluorine-manager-beta.tar.gz" tar czf "${ARCHIVE_NAME}" fluorine-manager/ |
