Skip to content

Commit

Permalink
publish to pypi workflow on tagged release (axolotl-ai-cloud#549)
Browse files Browse the repository at this point in the history
  • Loading branch information
winglian authored Sep 11, 2023
1 parent c42ff1f commit 845e365
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 845e365

Please sign in to comment.