Skip to content

Commit 239f1c2

Browse files
committed
release: Run container as root
Same as for the tests workflow in commit 3d13c3a.
1 parent 1658b74 commit 239f1c2

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ jobs:
1212
uses: actions/checkout@v2
1313

1414
- name: Build release tarball
15-
run: PUBLISH_TAR=1 tests/run-apt
15+
# run as root; current Ubuntu podman breaks user networking ("could not find slirp4netns")
16+
run: sudo PUBLISH_TAR=1 tests/run-apt
1617

1718
- name: Create GitHub release
1819
uses: docker://antonyurchenko/git-release:latest

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,5 +33,5 @@ jobs:
3333
scenario=${scenario%@*}
3434
script=${scenario%-*}
3535
release=${scenario#*-}
36-
# # run as root; current Ubuntu podman breaks user networking ("could not find slirp4netns")
36+
# run as root; current Ubuntu podman breaks user networking ("could not find slirp4netns")
3737
sudo ${{ matrix.env }} tests/run-${script} $release

0 commit comments

Comments
 (0)