We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 072911c commit ce950c1Copy full SHA for ce950c1
.github/workflows/release.yml
@@ -3,7 +3,8 @@ run-name: Release ${{ github.ref_name }}
3
on:
4
push:
5
tags:
6
- - "[0-9]+.[0-9]+.[0-9]+(-[a-zA-Z0-9]+)?"
+ - "[0-9]+.[0-9]+.[0-9]+"
7
+ - "[0-9]+.[0-9]+.[0-9]+-[a-zA-Z0-9]+"
8
jobs:
9
10
CreateRelease:
@@ -37,4 +38,4 @@ jobs:
37
38
with:
39
go-version: '1.21'
40
- run: GOOS=${{ matrix.goos }} GOARCH=${{ matrix.goarch }} go build -ldflags="-X forklift/Commands.Version=${{ github.ref_name }} -extldflags '-static'" -o bin/forklift_${{ github.ref_name }}_${{ matrix.goos }}_${{ matrix.goarch }} -tags no_lzma2
- - run: gh release upload ${{ github.ref_name }} bin/forklift* --clobber
41
+ - run: gh release upload ${{ github.ref_name }} bin/forklift* --clobber
0 commit comments