Skip to content

Commit a30feac

Browse files
oleg-jukovecLeonidVas
authored andcommitted
cd: downgrade a runner image to ubuntu-18.04
Due to a bug [1], packaging for Centos 7 does not work on ubuntu-latest. We need to downgrade a GitHub Actions runner image version until the problem is fixed. 1. packpack/packpack#145
1 parent 886f363 commit a30feac

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/packaging.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@ jobs:
99
if: |
1010
github.event_name == 'push' ||
1111
github.event.pull_request.head.repo.full_name != github.repository
12-
runs-on: ubuntu-latest
12+
# Packaging for CentOS 7 does not work with other versions, see:
13+
# https://github.com/packpack/packpack/issues/145
14+
runs-on: ubuntu-18.04
1315

1416
strategy:
1517
fail-fast: false

0 commit comments

Comments
 (0)