summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2021-08-04 13:59:47 +0200
committerMichał Górny <mgorny@gentoo.org>2021-08-04 14:43:17 +0200
commit7be33b173cb9c91d3534ba54e52331ca1e2da60c (patch)
treef30f0b7bce0bae911b04031e93f33b3206b6e641
parentgithub: future-proof wheel builds for py310 (diff)
downloadpkgcheck-0.10.4.tar.gz
pkgcheck-0.10.4.tar.bz2
pkgcheck-0.10.4.zip
github: fix missing git for cibuildwheelv0.10.4
-rw-r--r--.github/workflows/release.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index d43d179c..e9f51c4f 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -46,7 +46,7 @@ jobs:
CIBW_BUILD: cp38-* cp39-* cp310-*
CIBW_ARCHS_LINUX: x86_64
CIBW_MANYLINUX_X86_64_IMAGE: manylinux_2_24
- CIBW_BEFORE_BUILD: pip install -r {project}/requirements/dist.txt && {project}/.github/workflows/bash.sh
+ CIBW_BEFORE_BUILD: apt-get update && apt-get install -y git && pip install -r {project}/requirements/dist.txt && {project}/.github/workflows/bash.sh
CIBW_BEFORE_TEST: pip install -r {project}/requirements/test.txt
CIBW_TEST_COMMAND: py.test {project}/tests