Skip to content

Commit

Permalink
fix: workflow build and goreleaser
Browse files Browse the repository at this point in the history
  • Loading branch information
ntsd committed Oct 27, 2024
1 parent a32255b commit cdf9f39
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.18'
go-version: '1.23'

- name: Build
run: go build -v ./...
Expand Down
14 changes: 6 additions & 8 deletions .goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
# Make sure to check the documentation at https://goreleaser.com
project_name: cross-clipboard

version: 2

before:
hooks:
# You may remove this if you don't use go modules.
Expand All @@ -27,15 +29,11 @@ builds:
- amd64
- arm64
archives:
- replacements:
darwin: Darwin
linux: Linux
windows: Windows
format: tar.gz
- format: tar.gz
checksum:
name_template: 'checksums.txt'
snapshot:
name_template: "{{ incpatch .Version }}-next"
version_template: "{{ incpatch .Version }}-next"
changelog:
sort: asc
filters:
Expand All @@ -47,10 +45,10 @@ changelog:
brews:
- homepage: 'https://github.com/ntsd/cross-clipboard'
description: 'A multi device clipboard sharing over P2P network.'
folder: Formula
directory: Formula
commit_author:
name: ntsd
email: [email protected]
tap:
repository:
owner: ntsd
name: homebrew-cross-clipboard

0 comments on commit cdf9f39

Please sign in to comment.