From 39311058945569b46557b10786c788891e322c15 Mon Sep 17 00:00:00 2001 From: William Woodruff Date: Tue, 25 Jul 2023 11:06:50 -0400 Subject: [PATCH] workflows: remove old release workflow Not useful in its current form. Signed-off-by: William Woodruff --- .github/workflows/release.yml | 24 ------------------------ 1 file changed, 24 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 0efd42c93..000000000 --- a/.github/workflows/release.yml +++ /dev/null @@ -1,24 +0,0 @@ -on: - push: - tags: - - 'v*' - -name: release - -jobs: - release: - runs-on: ubuntu-latest - steps: - - name: create release - id: create_release - uses: actions/create-release@v1 - env: - # NOTE(ww): GitHub actions cannot trigger other GitHub actions by default, - # but we need that behavior to trigger the 'publish' workflow. - # The workaround is to use a PAT instead of the default GITHUB_TOKEN. - GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }} - with: - tag_name: ${{ github.ref }} - release_name: Release ${{ github.ref }} - draft: false - prerelease: ${{ contains(github.ref, 'pre') || contains(github.ref, 'rc') }}