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