Skip to content

Release 3.11 wheel

Release 3.11 wheel #5

Workflow file for this run

name: Release 3.11 wheel
on:
workflow_dispatch:
jobs:
release:
name: Publish release
runs-on: ubuntu-latest
steps:
# see https://github.com/marketplace/actions/download-workflow-artifact
- name: Download artifact
uses: dawidd6/action-download-artifact@v2
with:
workflow: local-build.yml
path: wheels
- name: List wheels
run: |
mkdir dist
mv wheels/**/*.whl dist
rm -rf wheels
ls dist
# see https://github.com/marketplace/actions/create-release
- name: Create release
uses: ncipollo/release-action@v1
with:
artifacts: "dist/*.whl"
token: ${{ secrets.GITHUB_TOKEN }}