From 4f33f707d5619f975e50f57aeafe8f060d9c09ef Mon Sep 17 00:00:00 2001 From: forestbat Date: Wed, 8 Nov 2023 15:19:07 +0800 Subject: [PATCH] Create publish-to-pypi-token.yml --- .github/workflows/publish-to-pypi-token.yml | 37 +++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 .github/workflows/publish-to-pypi-token.yml diff --git a/.github/workflows/publish-to-pypi-token.yml b/.github/workflows/publish-to-pypi-token.yml new file mode 100644 index 0000000..ef3c9e2 --- /dev/null +++ b/.github/workflows/publish-to-pypi-token.yml @@ -0,0 +1,37 @@ +name: Publish Python distributions to PyPI + +on: + push: + workflow_dispatch: + +jobs: + build-n-publish: + name: Build and publish Python distributions to PyPI + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@master + - name: Set up Python 3.9 + uses: actions/setup-python@v1 + with: + python-version: 3.9 + + - 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@release/v1 + with: + user: __token__ + password: ${{ secrets.HYDRO_XAJ_TOKEN }}