From 816677d022c9ee191b026cea50330d66a1f7ede0 Mon Sep 17 00:00:00 2001 From: Jim Ancona Date: Fri, 5 Jul 2024 15:57:44 -0400 Subject: [PATCH] Build fixes --- .github/workflows/go.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 1ab0bbd..22bbafb 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -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 @@ -38,7 +41,7 @@ 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" @@ -46,7 +49,7 @@ jobs: # 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}"