From ba3449c6a993cdaac22f533996d21e699f0726cf Mon Sep 17 00:00:00 2001 From: divyam234 Date: Mon, 21 Aug 2023 04:12:29 +0530 Subject: [PATCH] update --- .github/workflows/goreleaser.yml | 7 +++---- .goreleaser.yaml | 33 +------------------------------- 2 files changed, 4 insertions(+), 36 deletions(-) diff --git a/.github/workflows/goreleaser.yml b/.github/workflows/goreleaser.yml index bd1bfb4..2016181 100644 --- a/.github/workflows/goreleaser.yml +++ b/.github/workflows/goreleaser.yml @@ -17,15 +17,14 @@ jobs: with: fetch-depth: 0 - name: Set up Go - uses: actions/setup-go@v2 + uses: actions/setup-go@v4 with: go-version: 1.21 - cache: true - name: Run GoReleaser - uses: goreleaser/goreleaser-action@v3 + uses: goreleaser/goreleaser-action@v4 with: distribution: goreleaser version: latest - args: release --clean --timeout 1h + args: release --clean env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.goreleaser.yaml b/.goreleaser.yaml index d267b8b..93258e6 100644 --- a/.goreleaser.yaml +++ b/.goreleaser.yaml @@ -17,47 +17,16 @@ builds: - windows - darwin goarch: - - 386 - amd64 - arm - arm64 - goarm: - - 5 - - 6 - - 7 checksum: name_template: "{{ .ProjectName }}_checksums.txt" archives: - name_template: "{{ .ProjectName }}_{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}" - replacements: - darwin: MacOS - linux: Linux - windows: Windows - 386: 32bit - amd64: 64bit format_overrides: - goos: windows format: zip files: - README*.md - - LICENSE -changelog: - use: github - sort: asc - groups: - - title: New Features - regexp: "^.*feat[(\\w)]*:+.*$" - order: 0 - - title: "Bug fixes" - regexp: "^.*fix[(\\w)]*:+.*$" - order: 1 - - title: "Documentation updates" - regexp: "^.*docs[(\\w)]*:+.*$" - order: 2 - - title: "Refactoring" - regexp: "^.*refactor[(\\w)]*:+.*$" - order: 3 - - title: Others - order: 4 -release: - draft: true + - LICENSE \ No newline at end of file