publish to pypi workflow on tagged release (#549)
This commit is contained in:
23
.github/workflows/pypi.yml
vendored
Normal file
23
.github/workflows/pypi.yml
vendored
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
name: publish pypi
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- "main"
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
pypi-publish:
|
||||||
|
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
|
||||||
|
name: Upload release to PyPI
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
environment:
|
||||||
|
name: pypi
|
||||||
|
url: https://pypi.org/p/axolotl-ai
|
||||||
|
permissions:
|
||||||
|
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
|
||||||
|
with:
|
||||||
|
verbose: true
|
||||||
|
steps:
|
||||||
|
# retrieve your distributions here
|
||||||
|
- name: Publish package distributions to PyPI
|
||||||
|
uses: pypa/gh-action-pypi-publish@release/v1
|
||||||
Reference in New Issue
Block a user