Skip to content

Merge pull request #421 from ahwillia/alex #77

Merge pull request #421 from ahwillia/alex

Merge pull request #421 from ahwillia/alex #77

Workflow file for this run

name: Publish
on:
push:
branches:
- main
release:
types: [published]
permissions:
contents: read
jobs:
call-test-build:
uses: ./.github/workflows/testbuild.yml
publish-artifacts:
environment: production
needs: call-test-build
runs-on: ubuntu-latest
steps:
- name: Download all artifacts
uses: actions/download-artifact@v4
with:
path: dist
merge-multiple: true
- name: List files
run: ls -R dist
- name: Publish package
uses: pypa/[email protected]
with:
verbose: true
password: ${{ secrets.API_TOKEN_PYPI }}