Skip to content

Commit

Permalink
Run go-makefile-maker
Browse files Browse the repository at this point in the history
  • Loading branch information
sapcc-bot committed Oct 11, 2023
1 parent d2c54e2 commit 37c0e92
Show file tree
Hide file tree
Showing 2 changed files with 76 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/goreleaser.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
################################################################################
# This file is AUTOGENERATED with <https://github.com/sapcc/go-makefile-maker> #
# 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 }}
38 changes: 38 additions & 0 deletions .goreleaser.yaml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 37c0e92

Please sign in to comment.