From 3b1f5b0a03db37c0e9924cb082712abc6f4e3a78 Mon Sep 17 00:00:00 2001 From: Hau Nguyen Date: Mon, 10 Jun 2024 02:09:15 +0700 Subject: [PATCH] chore: remove goreleaser --- .github/workflows/goreleaser.yaml | 29 ----------------------------- .goreleaser.yml | 21 --------------------- 2 files changed, 50 deletions(-) delete mode 100644 .github/workflows/goreleaser.yaml delete mode 100644 .goreleaser.yml diff --git a/.github/workflows/goreleaser.yaml b/.github/workflows/goreleaser.yaml deleted file mode 100644 index 84c7830..0000000 --- a/.github/workflows/goreleaser.yaml +++ /dev/null @@ -1,29 +0,0 @@ -name: goreleaser - -on: - push: - tags: - - "*" - -permissions: - contents: write - -jobs: - goreleaser: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - with: - fetch-depth: 0 - - uses: actions/setup-go@v3 - with: - go-version: "1.19" - check-latest: true - cache: true - - uses: goreleaser/goreleaser-action@v2 - with: - distribution: goreleaser - version: latest - args: release --rm-dist - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.goreleaser.yml b/.goreleaser.yml deleted file mode 100644 index 9991ae0..0000000 --- a/.goreleaser.yml +++ /dev/null @@ -1,21 +0,0 @@ -before: - hooks: - - go mod tidy -builds: - - main: . - goos: - - linux - - windows - - darwin - goarch: - - amd64 - - arm64 -universal_binaries: - - replace: true -archives: - - format_overrides: - - goos: windows - format: zip -changelog: - skip: false - use: github