Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 8 additions & 5 deletions .github/workflows/build_pymeos_cffi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -193,24 +193,27 @@ jobs:
needs: [ test_wheels, build_sdist ]
runs-on: ubuntu-22.04
if: github.repository == 'MobilityDB/PyMEOS'
permissions:
id-token: write
steps:
- uses: actions/download-artifact@v4
- name: Get artifacts
uses: actions/download-artifact@v4
with:
path: ./dist
merge-multiple: true

- uses: pypa/gh-action-pypi-publish@release/v1
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.TEST_PYPI_API_TOKEN }}
skip_existing: true

create_release:
name: Create GitHub Release
needs: [ test_wheels, build_sdist ]
runs-on: ubuntu-22.04
steps:
- uses: actions/download-artifact@v4
- name: Get artifacts
uses: actions/download-artifact@v4
with:
path: ./dist
merge-multiple: true
Expand Down