From c4446ee3571b302599b4ba5ce955f1b73102bef9 Mon Sep 17 00:00:00 2001 From: dawnnnnnn Date: Mon, 8 Nov 2021 15:00:19 +0800 Subject: [PATCH] ci(*): add goreleaser ci support windows-amd64/386 linux-amd64/386/arm64/mips64 darwin-amd64/arm64 etc. --- .github/conf/.goreleaser.yml | 48 +++++++++++++++++++++++++++++++++++ .github/workflows/release.yml | 34 +++++++++++++++++++++++++ 2 files changed, 82 insertions(+) create mode 100644 .github/conf/.goreleaser.yml create mode 100644 .github/workflows/release.yml diff --git a/.github/conf/.goreleaser.yml b/.github/conf/.goreleaser.yml new file mode 100644 index 0000000..0e36d07 --- /dev/null +++ b/.github/conf/.goreleaser.yml @@ -0,0 +1,48 @@ +# This is an example .goreleaser.yml file with some sane defaults. +# Make sure to check the documentation at http://goreleaser.com +before: + hooks: + # You may remove this if you don't use go modules. + - go mod tidy + # you may remove this if you don't need go generate + - go generate ./... +builds: + - env: + - CGO_ENABLED=0 + goos: + - linux + - windows + - darwin + goarch: + - amd64 + - arm64 + - arm + - "386" + - mips64 + goarm: + - "6" + - "7" + flags: + - -trimpath + ldflags: + - -s -w -X main.version={{.Version}} -X main.commit={{.Commit}} -X main.date={{ .CommitDate }} -X main.builtBy=goreleaser + ignore: + - goos: windows + goarch: arm64 +archives: + - replacements: + darwin: Darwin + linux: Linux + windows: Windows + 386: i386 + amd64: x86_64 +checksum: + name_template: 'checksums.txt' +snapshot: + name_template: "{{ incpatch .Version }}-next" +changelog: + sort: asc + filters: + exclude: + - '^docs:' + - '^test:' diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..f16919b --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,34 @@ +name: goreleaser + +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.17 + - + name: Run GoReleaser + uses: goreleaser/goreleaser-action@v2 + with: + distribution: goreleaser + version: latest + args: --rm-dist -f .github/conf/.goreleaser.yml + workdir: . + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}