diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml deleted file mode 100644 index 30f7356..0000000 --- a/.github/workflows/release.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# -# Automatically tag a merge with main -# - -name: Release - -on: - push: - branches: - - main - -jobs: - tag-build-publish: - name: Tag - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v2 - with: - fetch-depth: "0" # make sure we get all commits! - - - name: Bump version and push tag - id: bump - uses: anothrNick/github-tag-action@1.36.0 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - RELEASE_BRANCHES: main - WITH_V: true