From 79a4ad300bf8bed32995eaeb7011b6262cbf4f7f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniele=20Trifir=C3=B2?= Date: Thu, 12 Jan 2023 14:48:42 +0100 Subject: [PATCH] gha: remove outdated action --- .github/workflows/release.yml | 28 ---------------------------- 1 file changed, 28 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 195c1d1..0000000 --- a/.github/workflows/release.yml +++ /dev/null @@ -1,28 +0,0 @@ -on: push - -name: Publish - -jobs: - pulish: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@master - - - uses: actions/setup-python@v1 - with: - python-version: '3.8' - - - name: Install pypa/build - run: python -m pip install build - - - name: Build the package - run: | - python -m build --sdist --wheel \ - --outdir dist/ . - - name: Publish - if: startsWith(github.ref, 'refs/tags') - uses: pypa/gh-action-pypi-publish@master - with: - password: ${{ secrets.PYPI_TOKEN }} -