We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2f77796 commit 4994beaCopy full SHA for 4994bea
.github/workflows/cd.yml
@@ -68,7 +68,7 @@ jobs:
68
build-id: darwin+x86-64
69
pkgs: gh
70
- os: ubuntu-latest
71
- container: debian:bullseye-slim
+ container: debian:buster-slim
72
build-id: linux+x86-64
73
74
- os: macos-latest
@@ -89,6 +89,15 @@ jobs:
89
with:
90
name: srcs
91
92
+ # debian:buster is archived, so we need to fix its sources.list
93
+ - name: fix debian:buster
94
+ if: ${{ matrix.platform.container == 'debian:buster-slim' }}
95
+ run: sed -i 's/deb.debian.org/archive.debian.org/g' /etc/apt/sources.list
96
+
97
+ - run: |
98
+ apt-get update
99
+ apt-get install curl gcc perl-modules openssl make xz-utils --yes
100
101
- uses: pkgxdev/setup@v4
102
103
+: ${{ matrix.platform.pkgs }}
0 commit comments