This is an automated email from the ASF dual-hosted git repository.
sbp pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tooling-asf-example.git
The following commit(s) were added to refs/heads/main by this push:
new 2fb04f3 Run the JS actions on the host, not in the container
2fb04f3 is described below
commit 2fb04f3bd91cc6c93adb4091cca7381afd7bbd16
Author: Sean B. Palmer <[email protected]>
AuthorDate: Wed Aug 13 18:41:08 2025 +0100
Run the JS actions on the host, not in the container
---
.github/workflows/build_dists.yaml | 9 ++++++---
1 file changed, 6 insertions(+), 3 deletions(-)
diff --git a/.github/workflows/build_dists.yaml
b/.github/workflows/build_dists.yaml
index a5e7fe9..21343b4 100644
--- a/.github/workflows/build_dists.yaml
+++ b/.github/workflows/build_dists.yaml
@@ -14,15 +14,18 @@ jobs:
- { name: musllinux-amd64, image:
quay.io/pypa/musllinux_1_2_x86_64, runs_on: ubuntu-22.04 }
- { name: musllinux-aarch64, image:
quay.io/pypa/musllinux_1_2_aarch64, runs_on: ubuntu-22.04-arm }
runs-on: ${{ matrix.runs_on }}
- container: ${{ matrix.image }}
steps:
- name: Checkout repository (shallow, no persisted credentials)
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 #
v4.3.0
with:
fetch-depth: 1
persist-credentials: false
- - name: Build dists with uv (sdist+wheel)
- run: uv build --sdist --wheel
+ - name: Build dists with uv inside ${{ matrix.image }}
+ run: |
+ docker run --rm \
+ -v "$GITHUB_WORKSPACE:/work" -w /work \
+ ${{ matrix.image }} \
+ sh -lc 'uv build --sdist --wheel'
- name: Upload dists artifact (${{ matrix.name }})
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
# v4.6.2
with:
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]