From bb212f97f40f33ebb5cb3831b6bb923acbfcb0e7 Mon Sep 17 00:00:00 2001 From: Reza Eghbali Date: Mon, 6 May 2024 20:00:14 -0700 Subject: [PATCH] added publish workflow --- .github/workflows/publish-to-test-pypi.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/publish-to-test-pypi.yml diff --git a/.github/workflows/publish-to-test-pypi.yml b/.github/workflows/publish-to-test-pypi.yml new file mode 100644 index 0000000..de7435f --- /dev/null +++ b/.github/workflows/publish-to-test-pypi.yml @@ -0,0 +1,17 @@ +name: Publish Python distribution package to PyPI and TestPyPI + +on: push + +jobs: + build: + name: Build distribution 📦 + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - name: Set up Python + uses: actions/setup-python@v4 + with: + python-version: "3.x" + +