From d34174a3397aef6e3c6e34373f27e7f23619c828 Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Mon, 1 Jan 2024 11:57:11 +0000 Subject: [PATCH] Delete github workflows --- .github/workflows/auto-tag.yml | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 .github/workflows/auto-tag.yml diff --git a/.github/workflows/auto-tag.yml b/.github/workflows/auto-tag.yml deleted file mode 100644 index 8f45a8d..0000000 --- a/.github/workflows/auto-tag.yml +++ /dev/null @@ -1,28 +0,0 @@ -name: Release - -on: - push: - branches: - - master - -jobs: - release: - runs-on: ubuntu-latest - steps: - - id: compute_tag - uses: craig-day/compute-tag@v10 - with: - github_token: ${{ github.token }} - version_scheme: continuous - version_type: major - - - name: create release - uses: actions/create-release@v1 - with: - tag_name: ${{ steps.compute_tag.outputs.next_tag }} - release_name: ${{ steps.compute_tag.outputs.next_tag }} - body: > - Automatic release of ${{ steps.compute_tag.outputs.next_tag }} - env: - GITHUB_TOKEN: ${{ github.token }} -