Skip to content

Commit

Permalink
Fix up bad CRC issue on deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
chemix-lunacy committed Aug 5, 2024
1 parent 61511fc commit e396144
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/deploy-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name: deploy-wheels
on:
release:
types: [released]
pull_request:

jobs:
deploy:
Expand Down Expand Up @@ -53,6 +54,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-*
Expand All @@ -62,4 +68,5 @@ jobs:
- name: Publish to PyPi
uses: pypa/gh-action-pypi-publish@release/v1
with:
packages-dir: dist/
packages-dir: dist/
repository-url: https://test.pypi.org/legacy/

0 comments on commit e396144

Please sign in to comment.