From 6be667404778d5f79cbc0274ba8e1bcff85deb04 Mon Sep 17 00:00:00 2001 From: Daichi Hirata Date: Thu, 25 Aug 2022 23:35:43 +0900 Subject: [PATCH] Add goreleaser and github actions configuration --- .github/workflows/release.yaml | 24 ++++++++++++++++++ .goreleaser.yml | 46 ++++++++++++++++++++++++++++++++++ 2 files changed, 70 insertions(+) create mode 100644 .github/workflows/release.yaml create mode 100644 .goreleaser.yml diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml new file mode 100644 index 0000000..9c8e7ad --- /dev/null +++ b/.github/workflows/release.yaml @@ -0,0 +1,24 @@ +name: Release +on: + push: + tags: + - v* +jobs: + goreleaser: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v2 + with: + fetch-depth: 0 + - name: Set up Go 1.18 + uses: actions/setup-go@v2 + with: + go-version: 1.18.x + - name: Run GoReleaser + uses: goreleaser/goreleaser-action@v2 + with: + version: latest + args: release --rm-dist + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.goreleaser.yml b/.goreleaser.yml new file mode 100644 index 0000000..2193ae7 --- /dev/null +++ b/.goreleaser.yml @@ -0,0 +1,46 @@ +before: + hooks: + - go mod download +builds: + - main: . + binary: gcsproxy + env: + - CGO_ENABLED=0 + goos: + - darwin + - linux + - windows + goarch: + - amd64 + - arm64 + - arm + - 386 + ignore: + - goos: darwin + goarch: 386 + +archives: + - format: tar.gz + wrap_in_directory: true + format_overrides: + - goos: windows + format: zip + name_template: '{{ .ProjectName }}-{{ .Version }}-{{ .Os }}-{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}' + files: + - LICENSE + - README.md + +checksum: + name_template: 'checksums.txt' + +snapshot: + name_template: "SNAPSHOT-{{ .Tag }}" + +changelog: + sort: asc + filters: + exclude: + - '^test:' + - 'README' + - Merge pull request + - Merge branch