From 37c0e92d870e18bcfb0b90ffbac9322dfd81e61c Mon Sep 17 00:00:00 2001 From: sapcc-bot Date: Wed, 11 Oct 2023 14:23:54 +0000 Subject: [PATCH] Run go-makefile-maker --- .github/workflows/goreleaser.yaml | 38 +++++++++++++++++++++++++++++++ .goreleaser.yaml | 38 +++++++++++++++++++++++++++++++ 2 files changed, 76 insertions(+) create mode 100644 .github/workflows/goreleaser.yaml create mode 100644 .goreleaser.yaml diff --git a/.github/workflows/goreleaser.yaml b/.github/workflows/goreleaser.yaml new file mode 100644 index 00000000..8fd39d39 --- /dev/null +++ b/.github/workflows/goreleaser.yaml @@ -0,0 +1,38 @@ +################################################################################ +# This file is AUTOGENERATED with # +# Edit Makefile.maker.yaml instead. # +################################################################################ + +name: goreleaser +"on": + push: + tags: + - v[0-9]+.[0-9]+.[0-9]+ +permissions: + contents: read + packages: write +jobs: + release: + name: goreleaser + runs-on: ubuntu-latest + steps: + - name: Check out code + uses: actions/checkout@v4 + with: + fetch-depth: 0 + - name: Set up Go + uses: actions/setup-go@v4 + with: + check-latest: true + go-version: "1.21" + - name: Generate release info + run: | + go install github.com/sapcc/go-bits/tools/release-info@latest + release-info CHANGELOG.md $(shell git describe --tags --abbrev=0) > build/release-info + - name: Run GoReleaser + uses: goreleaser/goreleaser-action@v5 + with: + args: release --clean --release-notes=./build/release-info + version: latest + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.goreleaser.yaml b/.goreleaser.yaml new file mode 100644 index 00000000..26ec3daf --- /dev/null +++ b/.goreleaser.yaml @@ -0,0 +1,38 @@ +before: + hooks: + - go mod tidy + +builds: + - env: + - CGO_ENABLED=0 + goos: + - linux + - windows + - darwin + goarch: + - amd64 + - arm64 + ldflags: + - -s -w + - -X github.com/sapcc/go-api-declarations/bininfo.binName=swift-health-exporter + - -X github.com/sapcc/go-api-declarations/bininfo.version={{ .Version }} + - -X github.com/sapcc/go-api-declarations/bininfo.commit={{ .FullCommit }} + - -X github.com/sapcc/go-api-declarations/bininfo.buildDate={{ .CommitDate }} # use CommitDate instead of Date for reproducibility + # Set the modified timestamp on the output binary to ensure that builds are reproducible. + mod_timestamp: "{{ .CommitTimestamp }}" + +snapshot: + name_template: "{{ .Tag }}-next" + +checksum: + name_template: "checksums.txt" + +archives: + - name_template: '{{ .ProjectName }}-{{ replace .Version "v" "" }}-{{ .Os }}-{{ .Arch }}' + format_overrides: + - goos: windows + format: zip + files: + - CHANGELOG.md + - LICENSE + - README.md