Skip to content

fix library name on macos #5

fix library name on macos

fix library name on macos #5

Workflow file for this run

# This workflow builds and uploads pymuhrec to pypi.
name: Release pymuhrec to PyPi
on:
workflow_dispatch:
push:
branches:
- release_workflow
jobs:
Run_build_wheels_workflow:
uses: ./.github/workflows/Build-wheels.yml
publish-to-pypi:
needs: Run_build_wheels_workflow
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/p/pymuhrec
permissions:
id-token: write
steps:
- name: Download wheels
uses: actions/download-artifact@v4
with:
path: dist/
merge-multiple: true
- name: Publish wheels 📦 to PyPi
uses: pypa/gh-action-pypi-publish@release/v1