diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 0f3c5aec..e971a941 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -59,6 +59,16 @@ jobs: name: wheels_nc_py_api path: wheelhouse_nc_py_api + - name: Create release draft + uses: ncipollo/release-action@v1.12.0 + with: + name: ${{ env.RELEASE_TAG }} + tag: ${{ env.RELEASE_TAG }} + commit: ${{ github.ref }} + draft: false + body: ${{ env.CHANGELOG }} + token: ${{ secrets.PAT_NC_PY_API }} + - name: Install twine run: | python3 -m pip install twine @@ -71,13 +81,3 @@ jobs: env: TWINE_USERNAME: __token__ TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }} - - - name: Create release draft - uses: ncipollo/release-action@v1.12.0 - with: - name: ${{ env.RELEASE_TAG }} - tag: ${{ env.RELEASE_TAG }} - commit: ${{ github.ref }} - draft: false - body: ${{ env.CHANGELOG }} - token: ${{ secrets.PAT_NC_PY_API }} diff --git a/CHANGELOG.md b/CHANGELOG.md index f36368eb..9e0c3341 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,7 @@ All notable changes to this project will be documented in this file. ### Added -- `app_cfg` property to `NextcloudApp` class. +- `app_cfg` property in the `NextcloudApp` class. ### Fixed diff --git a/nc_py_api/_version.py b/nc_py_api/_version.py index 7b32e762..cacb0b9f 100644 --- a/nc_py_api/_version.py +++ b/nc_py_api/_version.py @@ -1,3 +1,3 @@ """ Version of nc_py_api""" -__version__ = "0.0.20" +__version__ = "0.0.21"