From e1c979751d4c794efa4e1d1e5e2eee9aed385cd1 Mon Sep 17 00:00:00 2001 From: Hugo Osvaldo Barrera Date: Sun, 13 Jun 2021 16:10:34 +0200 Subject: [PATCH] Remove legacy GitHub Action workflows Conflicts with our newer pipeline when a tag is pushed. --- .github/workflows/publish.yml | 38 ----------------------------------- 1 file changed, 38 deletions(-) delete mode 100644 .github/workflows/publish.yml diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml deleted file mode 100644 index c33f4ee..0000000 --- a/.github/workflows/publish.yml +++ /dev/null @@ -1,38 +0,0 @@ -name: Publish - -on: - push: - tags: - - 0.* - -jobs: - github-release: - runs-on: ubuntu-18.04 - name: Publish GitHub Release - steps: - - uses: actions/checkout@master - - uses: actions/setup-python@v1 - with: - python-version: 3.7 - architecture: x64 - - run: pip install wheel - - run: python setup.py sdist bdist_wheel - - uses: softprops/action-gh-release@v1 - with: - files: dist/* - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - pypi: - runs-on: ubuntu-18.04 - name: Publish package on PyPI - steps: - - uses: actions/checkout@master - - uses: actions/setup-python@v1 - with: - python-version: 3.7 - architecture: x64 - - run: pip install wheel - - run: python setup.py sdist bdist_wheel - - uses: pypa/gh-action-pypi-publish@master - with: - password: ${{ secrets.PYPI_TOKEN }}