update
This commit is contained in:
parent
3138c493da
commit
5f493f11d2
2 changed files with 28 additions and 1 deletions
27
github/workflows/publish.yml
Normal file
27
github/workflows/publish.yml
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
name: Publish to PyPI
|
||||
|
||||
on:
|
||||
release:
|
||||
types: [published]
|
||||
|
||||
jobs:
|
||||
publish:
|
||||
runs-on: ubuntu-latest
|
||||
environment: pypi
|
||||
permissions:
|
||||
id-token: write
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- uses: actions/setup-python@v5
|
||||
with:
|
||||
python-version: "3.12"
|
||||
|
||||
- name: Build
|
||||
run: |
|
||||
pip install build
|
||||
python -m build
|
||||
|
||||
- name: Publish
|
||||
uses: pypa/gh-action-pypi-publish@release/v1
|
||||
2
uv.lock
generated
2
uv.lock
generated
|
|
@ -65,7 +65,7 @@ wheels = [
|
|||
|
||||
[[package]]
|
||||
name = "wiqaya"
|
||||
version = "0.1.0"
|
||||
version = "0.2.0"
|
||||
source = { editable = "." }
|
||||
|
||||
[package.dev-dependencies]
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue