-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Yuwei Yan
committed
Jan 6, 2025
1 parent
f145d6f
commit 4a12bad
Showing
3 changed files
with
39 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,6 +33,25 @@ jobs: | |
CIBW_ENVIRONMENT: ${{ secrets.CIBW_ENVIRONMENT }} | ||
uses: pypa/[email protected] | ||
# ATTENTION: this step is mandatory for PyPI trusted publishing | ||
- name: Publish package | ||
uses: pypa/gh-action-pypi-publish@release/v1 | ||
with: | ||
verbose: true | ||
packages-dir: wheelhouse/ | ||
deploy-macos: # WITHOUT testing | ||
name: Build wheels for macOS | ||
runs-on: macos-latest | ||
permissions: | ||
# IMPORTANT: this permission is mandatory for PyPI trusted publishing | ||
id-token: write | ||
steps: | ||
- uses: actions/checkout@v4 | ||
# ATTENTION: set CIBW_ENVIRONMENT=GITLAB_AUTH=username:token in your repository secrets | ||
- name: Build wheels | ||
env: | ||
CIBW_ENVIRONMENT: ${{ secrets.CIBW_ENVIRONMENT }} | ||
uses: pypa/[email protected] | ||
# ATTENTION: this step is mandatory for PyPI trusted publishing | ||
- name: Publish package | ||
uses: pypa/gh-action-pypi-publish@release/v1 | ||
with: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters