Skip to content

Commit a0f4b31

Browse files
committed
fix uppload_packages.sh.
1 parent 2fad8d0 commit a0f4b31

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

.github/workflows/build.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
set -e -x
33

44
apt-get update
5-
apt-get install libssl-dev
5+
apt-get -y install libssl-dev
66

77
PYBIN=/opt/python/${PYABI}/bin
88
"${PYBIN}/pip" install numpy

.github/workflows/upload_packages.sh

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,19 @@
11
#!/bin/bash
22
set -e
33

4+
if [[ "$GITHUB_REF" =~ ^"refs/tags/" ]]; then
5+
export GITHUB_TAG_REF="$GITHUB_REF"
6+
export GIT_TAG=$(echo "$GITHUB_REF" | sed -e "s/refs\/tags\///g")
7+
fi
8+
49
if [ -z "$GITHUB_TAG_REF" ]; then
510
echo "Not on a tag, won't deploy to pypi"
611
else
712
docker pull $DOCKER_IMAGE
813
pyabis=$(echo $PYABI | tr ":" "\n")
914
for abi in $pyabis; do
1015
docker run --rm -e "PYABI=$abi" -e "GIT_TAG=$GIT_TAG" -v `pwd`:/io \
11-
$DOCKER_IMAGE /io/.github/workflows/build.sh
16+
$DOCKER_IMAGE $PRE_CMD bash -c "chmod +x /io/.github/workflows/build.sh; /io/.github/workflows/build.sh"
1217
sudo chown -R $(id -u):$(id -g) ./*
1318
mv dist/*.whl /tmp
1419
done

0 commit comments

Comments
 (0)