From 66dc299a82dc354c686c7584c65d122d28a4f2aa Mon Sep 17 00:00:00 2001 From: Ivan Date: Sat, 25 Jun 2022 02:19:46 +0700 Subject: [PATCH] chore: Remove goreleaser.yml --- .github/workflows/goreleaser.yml | 38 -------------------------------- 1 file changed, 38 deletions(-) delete mode 100644 .github/workflows/goreleaser.yml diff --git a/.github/workflows/goreleaser.yml b/.github/workflows/goreleaser.yml deleted file mode 100644 index 2586ff5..0000000 --- a/.github/workflows/goreleaser.yml +++ /dev/null @@ -1,38 +0,0 @@ -name: goreleaser - -on: - push: - tags: - - '*' - -permissions: - contents: write - -jobs: - goreleaser: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - - name: Get version - run: echo "VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV - - - name: Checkout - uses: actions/checkout@v2 - with: - fetch-depth: 0 - - - name: Set up Go - uses: actions/setup-go@v2 - with: - go-version: 1.15 - - - name: Run GoReleaser - uses: goreleaser/goreleaser-action@v2 - with: - distribution: goreleaser - version: latest - args: release --rm-dist - env: - VERSION: ${{ env.VERSION }} - GITHUB_TOKEN: ${{ secrets.TOKEN }}