blob: e5e40c97b2174633a46d8bb8cf80bdf37a47a037 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
name: Github Release Publish
run-name: "Github Release Publish (tag=${{github.ref_name}})"
on:
release:
types: [published]
jobs:
publish-release:
uses: ./.github/workflows/publish-release.yml
secrets: inherit # pass all secrets (required to access secrets in a called workflow)
with:
pypi_target: "pypi.org"
repo_release_ref: ${{ github.ref_name }}
|