From a7f336070a1747cd79461ad569183546ce6783d1 Mon Sep 17 00:00:00 2001 From: John Dumbell Date: Mon, 5 Aug 2024 15:23:44 +0100 Subject: [PATCH] Fix up bad CRC issue on deploy --- .github/workflows/deploy-wheels.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy-wheels.yml b/.github/workflows/deploy-wheels.yml index 85a9748..9f301c6 100644 --- a/.github/workflows/deploy-wheels.yml +++ b/.github/workflows/deploy-wheels.yml @@ -3,6 +3,7 @@ name: deploy-wheels on: release: types: [released] + pull_request: jobs: deploy: @@ -54,6 +55,11 @@ jobs: permissions: id-token: write steps: + - name: Set up Python 3.10 + uses: actions/setup-python@v3 + with: + python-version: "3.10" + - uses: actions/download-artifact@v4 with: pattern: rasqal-* @@ -63,4 +69,5 @@ jobs: - name: Publish to PyPi uses: pypa/gh-action-pypi-publish@release/v1 with: - packages-dir: dist/ \ No newline at end of file + packages-dir: dist/ + repository-url: https://test.pypi.org/legacy/ \ No newline at end of file