From 075733e34028f8674ad3a082a04864f5862bade9 Mon Sep 17 00:00:00 2001 From: Roman Sharkov Date: Wed, 16 Oct 2024 01:16:43 +0200 Subject: [PATCH] chore: Remove goreleaser workflow --- .github/workflows/released.yml | 35 ---------------------------------- 1 file changed, 35 deletions(-) delete mode 100644 .github/workflows/released.yml diff --git a/.github/workflows/released.yml b/.github/workflows/released.yml deleted file mode 100644 index 8cc6341..0000000 --- a/.github/workflows/released.yml +++ /dev/null @@ -1,35 +0,0 @@ -name: Released - -on: - push: - tags: - - '*' - -permissions: - contents: write - -jobs: - goreleaser: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v2 - with: - fetch-depth: 0 - - - name: Set up Go - uses: actions/setup-go@v2 - with: - go-version: 1.16 - - - name: Install mockgen - run: go install github.com/golang/mock/mockgen@v1.6.0 - - - name: Run GoReleaser - uses: goreleaser/goreleaser-action@v2 - with: - distribution: goreleaser - version: latest - args: release --rm-dist - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}