From 847e54f5cd03cc0015382138965bdd48f6fac225 Mon Sep 17 00:00:00 2001 From: Nick Date: Sun, 24 Apr 2022 02:26:05 -0400 Subject: [PATCH] Publish to GitHub and PyPI --- .github/workflows/publish.yml | 40 +++++++++++++++++++++++++++++++++++ README.md | 2 +- setup.py | 2 +- 3 files changed, 42 insertions(+), 2 deletions(-) create mode 100644 .github/workflows/publish.yml diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml new file mode 100644 index 0000000..e09196b --- /dev/null +++ b/.github/workflows/publish.yml @@ -0,0 +1,40 @@ +# ref: https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries + +name: Publish Package + +on: + # publish from the Releases page: + release: + types: [published] + +jobs: + publish: + name: Publish Package + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + + - uses: actions/setup-python@v3 + + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install build + + - name: Build + run: python -m build + + - name: Publish to Github + uses: softprops/action-gh-release@v1 + with: + files: 'dist/*' + fail_on_unmatched_files: true + prerelease: ${{ contains(github.ref, 'rc') || contains(github.ref, 'dev') }} + + - name: Publish to PyPI + uses: pypa/gh-action-pypi-publish@release/v1 + with: + user: __token__ + password: ${{ secrets.PYPI_TOKEN }} diff --git a/README.md b/README.md index 616382a..945fdf3 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ IMAP authentication plugin for [Radicale](http://radicale.org/). ## Installation ```shell -$ python3 -m pip install --upgrade https://github.com/Unrud/RadicaleIMAP/archive/master.tar.gz +$ python3 -m pip install --upgrade RadicaleIMAP ``` ## Configuration diff --git a/setup.py b/setup.py index 1b7fbbf..9a65ab4 100755 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ VERSION = "3.0.0" setup( - name="Radicale_IMAP", + name="RadicaleIMAP", version=VERSION, description="IMAP authentication plugin for Radicale", author="Unrud",