Skip to content

Commit

Permalink
new release
Browse files Browse the repository at this point in the history
  • Loading branch information
junzis committed Dec 11, 2024
1 parent 25a1885 commit bc51e68
Show file tree
Hide file tree
Showing 4 changed files with 926 additions and 762 deletions.
31 changes: 24 additions & 7 deletions .github/workflows/build-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,32 @@ name: build and publish

on:
release:
types: [created]
types:
- published
workflow_dispatch:

jobs:
build:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build and publish to pypi
uses: JRubics/[email protected]
- uses: actions/checkout@v4

- name: Install uv
uses: astral-sh/setup-uv@v3
with:
enable-cache: true

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"

- name: Build packages
run: |
uvx --with hatch-vcs hatchling build
- name: Publish a Python distribution to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
poetry_version: "==1.8.2"
pypi_token: ${{ secrets.PYPI_API_TOKEN_OPENAP }}
user: __token__
password: ${{ secrets.PYPI_API_TOKEN_OPENAP }}
Loading

0 comments on commit bc51e68

Please sign in to comment.