Skip to content

Commit

Permalink
Try to fix releases again
Browse files Browse the repository at this point in the history
  • Loading branch information
urschrei committed Apr 24, 2023
1 parent c54b33e commit 182a057
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 3 deletions.
18 changes: 16 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,15 +55,29 @@ jobs:

steps:
- uses: actions/checkout@v3

- name: Build wheels
run: |
pip wheel --no-deps .
pip wheel --no-deps . -w dist
- uses: actions/upload-artifact@v3
with:
path: dist/*.whl

- name: Download compressed artifacts
id: download
uses: actions/download-artifact@v3
with:
path: ./artifacts

- name: Create release and upload wheels
uses: ncipollo/release-action@v1
with:
allowUpdates: true
artifacts: "dist/**/*.whl,dist/**/*.gz"
artifacts: "${{ steps.download.outputs.download-path }}/**/*.whl,${{ steps.download.outputs.download-path }}/**/*.gz,${{ steps.download.outputs.download-path }}/**/*.zip"
token: ${{ secrets.GITHUB_TOKEN }}

- name: PyPI Publish
uses: pypa/[email protected]
with:
packages-dir: ${{ steps.download.outputs.download-path }}/**/
2 changes: 1 addition & 1 deletion pyzotero/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.5.8"
__version__ = "1.5.9"

0 comments on commit 182a057

Please sign in to comment.