File tree Expand file tree Collapse file tree 4 files changed +41
-44
lines changed
Expand file tree Collapse file tree 4 files changed +41
-44
lines changed Original file line number Diff line number Diff line change 1+ name : PyPI
2+
3+ on :
4+ release :
5+ types : [created]
6+
7+ jobs :
8+ publish :
9+ runs-on : ubuntu-latest
10+ steps :
11+ - uses : actions/checkout@v3
12+
13+ - name : Install poetry
14+ run : pipx install poetry
15+
16+ - name : Setup python
17+ uses : actions/setup-python@v4
18+ with :
19+ python-version : " 3.8"
20+ cache : " poetry"
21+
22+ - name : Install dependencies
23+ run : |
24+ python -m pip install -U twine
25+ poetry install
26+ - name : Build package
27+ run : poetry build
28+
29+ - name : Upload to PyPI
30+ run : twine upload dist/*
31+ env :
32+ TWINE_USERNAME : __token__
33+ TWINE_PASSWORD : ${{ secrets.PYPI_TOKEN }}
34+ TWINE_NON_INTERACTIVE : true
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 22
33<!-- next-version-placeholder-->
44
5+ ### Feature
6+ * Add post-write-hook/callback ([ ` 80cbf38 ` ] ( https://github.com/projectcaluma/manabi/commit/80cbf387a775e1a417e3a44bcfb884e926d5bf08 ) )
7+
8+ ### Fix
9+ * ** token:** Handle errors from msgpack by creating a invalid token ([ ` 81a5ccf ` ] ( https://github.com/projectcaluma/manabi/commit/81a5ccff740112947c8fb67b97d17d6e640eedfb ) )
10+
511## v1.1.0 (2023-07-03)
612
713### Feature
Original file line number Diff line number Diff line change 11[tool .poetry ]
22name = " manabi"
3- version = " 1.1 .0"
3+ version = " 1.2 .0"
44description = " Provide WebDAV access for documents."
55homepage = " https://github.com/projectcaluma/manabi"
66repository = " https://github.com/projectcaluma/manabi"
You can’t perform that action at this time.
0 commit comments