From 6f027fa7fb7813beffa061efc8ad60de4168d55a Mon Sep 17 00:00:00 2001 From: David Allen Date: Tue, 30 Jul 2024 10:47:39 -0600 Subject: [PATCH] Added goreleaser and GitHub workflow --- .github/workflows/main.yml | 39 +++++++++++++++++++++++++++++++++++ .goreleaser.yaml | 42 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 81 insertions(+) create mode 100644 .github/workflows/main.yml create mode 100644 .goreleaser.yaml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..0b8ae48 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,39 @@ +name: Release with goreleaser + +on: + workflow_dispatch: + push: + tags: + - v* + +permissions: write-all # Necessary for the generate-build-provenance action with containers + +jobs: + + build: + + + runs-on: ubuntu-latest + + steps: + - name: Set up Go 1.21 + uses: actions/setup-go@v5 + with: + go-version: 1.21 + - name: Checkout + uses: actions/checkout@v4 + with: + fetch-tags: 1 + fetch-depth: 0 + - name: Release with goreleaser + uses: goreleaser/goreleaser-action@v6 + env: + GITHUB_TOKEN: ${{ github.token }} + with: + version: latest + args: release --clean + id: goreleaser + - name: Attest Binaries + uses: actions/attest-build-provenance@v1 + with: + subject-path: '${{ github.workspace }}/dist/configurator_linux_amd64_v1/configurator' \ No newline at end of file diff --git a/.goreleaser.yaml b/.goreleaser.yaml new file mode 100644 index 0000000..d5592d1 --- /dev/null +++ b/.goreleaser.yaml @@ -0,0 +1,42 @@ +version: 2 + +before: + hooks: + - go mod download +builds: + - env: + - CGO_ENABLED=1 + goos: + - linux + goarch: + - amd64 +archives: + - format: tar.gz + # this name template makes the OS and Arch compatible with the results of uname. + name_template: >- + {{ .ProjectName }}_ + {{- title .Os }}_ + {{- if eq .Arch "amd64" }}x86_64 + {{- else if eq .Arch "386" }}i386 + {{- else }}{{ .Arch }}{{ end }} + {{- if .Arm }}v{{ .Arm }}{{ end }} + files: + - LICENSE + - CHANGELOG.md + - README.md + - configurator +checksum: + name_template: 'checksums.txt' +snapshot: + name_template: "{{ incpatch .Version }}-next" +changelog: + sort: asc + filters: + exclude: + - '^docs:' + - '^test:' +release: + github: + name_template: "{{.Version}}" + prerelease: auto + mode: append \ No newline at end of file