diff --git a/.github/workflows/publish-to-test-pypi.yml b/.github/workflows/publish-to-test-pypi.yml new file mode 100644 index 0000000..3515037 --- /dev/null +++ b/.github/workflows/publish-to-test-pypi.yml @@ -0,0 +1,58 @@ +name: Publish Python 🐍 distributions 📦 to PyPI and TestPyPI +on: push +jobs: + build-n-publish: + name: Build and publish Python 🐍 distributions 📦 to PyPI and TestPyPI + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@master + with: + fetch-depth: 0 + - name: Set up Python 3.10 + uses: actions/setup-python@v4 + with: + python-version: "3.10" + - name: Install pypa/build + run: >- + python -m + pip install + build + --user + - name: Install pypa/pdoc + run: >- + python -m + pip install + pdoc + --user + - name: Generate doc + run: >- + python -m + pdoc -o docs -n pystorcli + - name: Build the test wheel and a source tarball + run: >- + PACKAGE_NAME=pystorcli2 python -m + build + --sdist + --wheel + --outdir distTest/ + . + - name: Publish distribution 📦 to Test PyPI + uses: pypa/gh-action-pypi-publish@master + with: + password: ${{ secrets.TEST_PYPI_API_TOKEN }} + repository_url: https://test.pypi.org/legacy/ + packages_dir: distTest/ + skip_existing: true + - name: Build the binary wheel and a source tarball + run: >- + python -m + build + --sdist + --wheel + --outdir dist/ + . + - name: Publish distribution 📦 to PyPI + if: startsWith(github.ref, 'refs/tags') + uses: pypa/gh-action-pypi-publish@master + with: + password: ${{ secrets.PYPI_API_TOKEN }}