From f33cf45046769d7d40ecd343a17ce8d70df04e5d Mon Sep 17 00:00:00 2001 From: Dominik Krupke Date: Fri, 12 May 2023 14:55:46 +0200 Subject: [PATCH] trying to publish --- .github/workflows/release.yml | 20 ++++++++++++++++++++ README.md | 4 ++++ 2 files changed, 24 insertions(+) create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..b65f6c6 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,20 @@ +name: Release + +on: + release: + types: [published] + +jobs: + pypi-publish: + name: Upload release to PyPI + runs-on: ubuntu-latest + environment: + name: pypi + url: https://pypi.org/p/ + permissions: + id-token: write # IMPORTANT: this permission is mandatory for trusted publishing + steps: + # retrieve your distributions here + + - name: Publish package distributions to PyPI + uses: pypa/gh-action-pypi-publish@release/v1 \ No newline at end of file diff --git a/README.md b/README.md index 16bd287..f4d376b 100644 --- a/README.md +++ b/README.md @@ -104,3 +104,7 @@ for a full example. We are happy about any contribution and also about reported issues. Sometimes it can take some time before we are able to take care of something, as we need to prioritize quite often. + +## Changelog + +* *0.1.1* First tested and apparently working version.