From 5feb4d6829f2ddb69ec5522cb565de92fc5d3c84 Mon Sep 17 00:00:00 2001 From: Stan Bondi Date: Fri, 22 May 2026 17:01:23 +0200 Subject: [PATCH] Fix release workflow wheel glob and PyPI project URL --- .github/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8303d4e..199b6e7 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -20,7 +20,7 @@ jobs: runs-on: ubuntu-latest environment: name: pypi - url: https://pypi.org/project/ootle/ + url: https://pypi.org/project/ootle-py/ steps: - name: Check out repository uses: actions/checkout@v5 @@ -44,8 +44,8 @@ jobs: - name: Verify wheel bundles the WASM blob run: | - unzip -l dist/ootle-*.whl | grep -q ootle_wasm_bg.wasm - unzip -l dist/ootle-*.whl | grep -q VERSION + unzip -l dist/ootle_py-*.whl | grep -q ootle_wasm_bg.wasm + unzip -l dist/ootle_py-*.whl | grep -q VERSION - name: Validate distributions run: uv run --with twine twine check dist/*