From cfa1c33b1966d17aeb2d6027334f10255df1116b Mon Sep 17 00:00:00 2001 From: Wim Pomp Date: Sat, 9 May 2026 19:46:39 +0200 Subject: [PATCH] - workflow updates --- .github/workflows/publish_pypi.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/publish_pypi.yml b/.github/workflows/publish_pypi.yml index ed5d248..ff26347 100644 --- a/.github/workflows/publish_pypi.yml +++ b/.github/workflows/publish_pypi.yml @@ -92,6 +92,8 @@ jobs: export PATH="$HOME/.cargo/bin:$HOME/.osxcross/bin:$PATH" maturin sdist --out dist + ls -lhtr dist/ + rustup target add x86_64-unknown-linux-gnu maturin build --release --out dist --target x86_64-unknown-linux-gnu rustup target add aarch64-unknown-linux-gnu @@ -110,6 +112,8 @@ jobs: maturin build --release --out dist --target x86_64-apple-darwin --zig rustup target add aarch64-apple-darwin maturin build --release --out dist --target aarch64-apple-darwin --zig + + ls -lhtr dist/ - name: Store cache uses: actions/cache/save@v4 @@ -123,6 +127,12 @@ jobs: ~/.osxcross key: cache-ubuntu-maturin-cross-compile + - name: Upload wheels + uses: https://github.com/christopherHX/gitea-upload-artifact@v4 + with: + name: tiffwrite-2026.5.0.tar.gz + path: dist/tiffwrite-2026.5.0.tar.gz + - name: Publish to PyPI uses: pypa/gh-action-pypi-publish@release/v1 with: