From 1d379362f313a85408badbbd055e92368beab75d Mon Sep 17 00:00:00 2001 From: Prad N Date: Thu, 29 May 2025 21:42:16 -0400 Subject: [PATCH] chore: remove release workflow --- .github/workflows/release.yml | 31 ------------------------------- 1 file changed, 31 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 f5899d1..0000000 --- a/.github/workflows/release.yml +++ /dev/null @@ -1,31 +0,0 @@ -name: New Release -on: - push: - tags: - - "v*.*.*" - - "*" - -permissions: - contents: write - issues: write - packages: write - -jobs: - goreleaser: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v4 - with: - fetch-depth: 0 - - name: Set up Go - uses: actions/setup-go@v5 - with: - go-version: stable - - name: Run GoReleaser - uses: goreleaser/goreleaser-action@v6 - with: - version: "~> v2" - args: release --clean - env: - GITHUB_TOKEN: ${{ secrets.GH_PAT }}