mirror of
https://github.com/davidallendj/configurator.git
synced 2025-12-20 11:37:00 -07:00
Added goreleaser and GitHub workflow
This commit is contained in:
parent
699ff76e42
commit
6f027fa7fb
2 changed files with 81 additions and 0 deletions
39
.github/workflows/main.yml
vendored
Normal file
39
.github/workflows/main.yml
vendored
Normal file
|
|
@ -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'
|
||||
Loading…
Add table
Add a link
Reference in a new issue