From 631cf5f33e564027298f53acba0056ce4dbace7d Mon Sep 17 00:00:00 2001 From: Zack Cerza Date: Tue, 2 Jun 2026 16:12:38 -0600 Subject: [PATCH] release.yml: Use bash syntax, not fish Signed-off-by: Zack Cerza --- .github/workflows/release.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8d495a95..2999f02f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -22,9 +22,9 @@ jobs: run: uv python install 3.13 - name: Build run: rm -rf dist && uv build - - name: Smoke test (wheel) - run: uv run --isolated --no-project --with (ls dist/*.whl)\[test\] pytest tests - - name: Smoke test (source distribution) - run: uv run --isolated --no-project --with (ls dist/*.tar.gz)\[test\] pytest tests + - name: Run tests (wheel) + run: uv run --isolated --no-project --with "$(ls dist/*.whl)[test]" pytest tests + - name: Run tests (source distribution) + run: uv run --isolated --no-project --with "$(ls dist/*.tar.gz)[test]" pytest tests - name: Publish run: uv publish