From 2110da9501458ea627690db2ce3da2310200c9db Mon Sep 17 00:00:00 2001 From: salotz Date: Mon, 10 Jun 2024 10:44:23 -0400 Subject: [PATCH] remove on-release pipeline --- .github/workflows/on-release.yml | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 .github/workflows/on-release.yml diff --git a/.github/workflows/on-release.yml b/.github/workflows/on-release.yml deleted file mode 100644 index 6c591b0..0000000 --- a/.github/workflows/on-release.yml +++ /dev/null @@ -1,30 +0,0 @@ -name: Publish - -on: - release: - types: [created] - -jobs: - deploy: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v2 - - name: Set up Python - uses: actions/setup-python@v2 - with: - python-version: '3.9' - - # ----- install & configure poetry ----- - - name: Install Poetry - uses: snok/install-poetry@v1 - with: - virtualenvs-create: true - virtualenvs-in-project: true - - # ----- publish - - name: Build and publish - run: | - poetry version $(git describe --tags --abbrev=0) - poetry build - poetry publish --username ${{ secrets.PYPI_USERNAME }} --password ${{ secrets.PYPI_PASSWORD }}