From a507d98886824283ac872ba3900d131b6b32cbcd Mon Sep 17 00:00:00 2001 From: Adam Hofmann Date: Thu, 3 Aug 2023 20:25:17 +0300 Subject: [PATCH] Remove release workflow in favor of using tags --- .github/workflows/publish_release.yaml | 28 -------------------------- 1 file changed, 28 deletions(-) delete mode 100644 .github/workflows/publish_release.yaml diff --git a/.github/workflows/publish_release.yaml b/.github/workflows/publish_release.yaml deleted file mode 100644 index f463753bdb..0000000000 --- a/.github/workflows/publish_release.yaml +++ /dev/null @@ -1,28 +0,0 @@ -name: Publish to GitHub - -on: - push: - tags: - - "v*" - - workflow_dispatch: - -jobs: - build-n-publish: - name: Build and publish to GitHub - runs-on: ubuntu-latest - - steps: - - name: Checkout source - uses: actions/checkout@v2 - - - name: Create GitHub Release - id: create_release - uses: actions/create-release@v1 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - with: - tag_name: ${{ github.ref }} - release_name: ${{ github.ref }} - draft: false - prerelease: false