Skip to content

Commit

Permalink
feat: add -trimpath build flag
Browse files Browse the repository at this point in the history
  • Loading branch information
mirkobrombin committed Jan 3, 2024
1 parent 3fd6d92 commit 9fa9c23
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@ jobs:
- name: Build
run: |
go get ./...
go build -v ./...
go build -v -trimpath ./...
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Build
run: |
go get ./...
go build -o vib
go build -o vib -trimpath
- name: Upload a Release Asset
uses: softprops/action-gh-release@v1
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
)

var (
Version = "0.3.1"
Version = "0.3.2"
)

func main() {
Expand Down

0 comments on commit 9fa9c23

Please sign in to comment.