Skip to content

Commit

Permalink
Build fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jancona committed Jul 5, 2024
1 parent 1f94fac commit 816677d
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ jobs:
- name: Build Linux amd64
run: CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -v -o dmrfill_linux_amd64

- name: Build Linux arm
run: CGO_ENABLED=0 GOOS=linux GOARCH=arm go build -v -o dmrfill_linux_arm

- name: Build Linux arm64
run: CGO_ENABLED=0 GOOS=linux GOARCH=arm64 go build -v -o dmrfill_linux_arm64

Expand All @@ -38,15 +41,15 @@ jobs:
run: CGO_ENABLED=0 GOOS=darwin GOARCH=arm64 go build -v -o dmrfill_darwin_arm64

- id: new_version
uses: paulhatch/semantic-version@v3
uses: paulhatch/semantic-version@v5.3.0
with:
branch: "master"
tag_prefix: "v"
# A string which, if present in a git commit, indicates that a change represents a
# major (breaking) change
major_pattern: "(MAJOR)"
# Same as above except indicating a minor change
minor_pattern: "(minor)"
minor_pattern: "(MINOR)"
# A string to determine the format of the version output
format: "${major}.${minor}.${patch}"

Expand Down

0 comments on commit 816677d

Please sign in to comment.