From 689272e478e3228f366ca756c81c52d89272e128 Mon Sep 17 00:00:00 2001 From: Alex Cabrera Date: Wed, 30 Aug 2023 16:08:48 -0700 Subject: [PATCH] Revert "build: GH workflows" This reverts commit c61148bb870ff9bd6564a1a2f118964471228b56. --- .github/workflows/release.yml | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 .github/workflows/release.yml 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 }}