diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml deleted file mode 100644 index 7ca0dd04..00000000 --- a/.github/workflows/release.yml +++ /dev/null @@ -1,26 +0,0 @@ -name: Release workflow - -on: - push: - tags: - - "v[0123456789].*" - -jobs: - release: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - uses: actions/setup-python@v4 - with: - python-version: 3.9 - - name: Install Poetry - uses: snok/install-poetry@v1.3.3 - with: - virtualenvs-in-project: true - virtualenvs-path: ~/.virtualenvs - - name: Install Poetry Dependencies - run: poetry install --no-interaction --no-root - - name: Build poetry project - run: poetry build -v - - name: publish - run: poetry publish -u __token__ -p ${{ secrets.PYPI_TOKEN }}