Bump to v0.0.5 #21
Workflow file for this run
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
name: Python-Build | |
on: | |
push: | |
tags: [ "v*" ] | |
concurrency: | |
group: Python-Build-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build-wheel: | |
name: build-wheel-${{matrix.config.name}} | |
runs-on: ${{matrix.config.os}} | |
strategy: | |
matrix: | |
config: | |
- {name: macos, os: macos-13} | |
- {name: linux, os: ubuntu-latest} | |
- {name: windows, os: windows-latest} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: "recursive" | |
- name: Create and activate virtual environment | |
run: | | |
python -m venv venv | |
echo "PATH=$(pwd)/venv/bin:$PATH" >> $GITHUB_ENV | |
- name: Install cibuildwheel | |
run: | | |
pip install cibuildwheel | |
- name: Build wheel | |
run: python -m cibuildwheel --output-dir wheelhouse | |
- name: Upload k230_flash-python Build Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: k230_flash-python-${{matrix.config.name}} | |
path: ${{github.workspace}}/wheelhouse | |
if-no-files-found: error | |
pypi-publish: | |
name: Upload Artifacts to PyPI | |
runs-on: ubuntu-latest | |
# if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') | |
needs: ["build-wheel"] | |
environment: | |
name: pypi | |
url: https://pypi.org/p/k230_flash | |
permissions: | |
id-token: write | |
contents: write | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/download-artifact@v4 | |
with: | |
name: k230_flash-python-macos | |
path: ${{github.workspace}}/dist | |
- uses: actions/download-artifact@v4 | |
with: | |
name: k230_flash-python-linux | |
path: ${{github.workspace}}/dist | |
- uses: actions/download-artifact@v4 | |
with: | |
name: k230_flash-python-windows | |
path: ${{github.workspace}}/dist | |
- name: List dist | |
run: | | |
ls -alh ${{github.workspace}}/dist | |
- name: Publish package distributions to PyPI | |
uses: pypa/gh-action-pypi-publish@release/v1 | |
with: | |
verbose: true | |
- name: Upload Release Assets | |
uses: softprops/action-gh-release@v2 | |
if: startsWith(github.ref, 'refs/tags/') | |
with: | |
generate_release_notes: true | |
tag_name: ${{ github.ref_name }} | |
files: | | |
${{github.workspace}}/dist/**/*.whl |