From 866c7f7608347cc3aaaaf7cf0b16b6ee0b4aaea7 Mon Sep 17 00:00:00 2001 From: Giuseppe De Marco Date: Wed, 26 Jul 2023 13:36:39 +0200 Subject: [PATCH] feat: PYPI continuous deployment This PR introduces a continuous deployment of the sd-jwt python package, on PYPI, each time a new version of the library is released --- .github/workflows/pypi.yml | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 .github/workflows/pypi.yml diff --git a/.github/workflows/pypi.yml b/.github/workflows/pypi.yml new file mode 100644 index 0000000..bb9da86 --- /dev/null +++ b/.github/workflows/pypi.yml @@ -0,0 +1,35 @@ +name: Publish Python distribution to PyPI +on: + release: + types: + - published + +jobs: + build-n-publish: + name: Publish Python distribution to PyPI + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@master + - name: Setup Python 3.8 + uses: actions/setup-python@v1 + with: + python-version: 3.8 + - name: Install pypa/build + run: >- + python -m + pip install + build + --user + - name: Build a binary wheel and a source tarball + run: >- + python -m + build + --sdist + --wheel + --outdir dist/ + . + - name: Publish distribution to PyPI + uses: pypa/gh-action-pypi-publish@master + with: + user: __token__ + password: ${{ secrets.PYPI_API_TOKEN }}