Skip to content

Commit d29628e

Browse files
authored
Remove docker-run-action (#23254)
Summary -- Copied from astral-sh/uv#17994 Test Plan -- Today's release and CI
1 parent 8a04266 commit d29628e

File tree

1 file changed

+7
-9
lines changed

1 file changed

+7
-9
lines changed

.github/workflows/build-binaries.yml

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -390,15 +390,13 @@ jobs:
390390
args: --release --locked --out dist --compatibility pypi
391391
- name: "Test wheel"
392392
if: matrix.target == 'x86_64-unknown-linux-musl'
393-
uses: addnab/docker-run-action@4f65fabd2431ebc8d299f8e5a018d79a769ae185 # v3
394-
with:
395-
image: alpine:latest
396-
options: -v ${{ github.workspace }}:/io -w /io
397-
run: |
398-
apk add python3
399-
python -m venv .venv
400-
.venv/bin/pip3 install ${{ env.PACKAGE_NAME }} --no-index --find-links dist/ --force-reinstall
401-
.venv/bin/${{ env.MODULE_NAME }} --help
393+
run: |
394+
docker run --rm -v ${{ github.workspace }}:/io -w /io --env MODULE_NAME --env PACKAGE_NAME alpine:latest sh -c "
395+
apk add python3;
396+
python -m venv .venv;
397+
.venv/bin/pip3 install ${PACKAGE_NAME} --no-index --find-links dist/ --force-reinstall;
398+
.venv/bin/${MODULE_NAME} --help;
399+
"
402400
- name: "Upload wheels"
403401
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
404402
with:

0 commit comments

Comments
 (0)