Skip to content

Commit 618e33b

Browse files
author
EIKE SOEREN VOM BAUER
committed
fix NEXT_VERSION in workflow
1 parent 7b8c4ff commit 618e33b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/Release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,12 @@ jobs:
2929
env:
3030
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3131
- name: Build amd64
32-
run: go build -v -ldflags "-X main.version=$NEXT_VERSION" -o out/awesome-ci
32+
run: go build -v -ldflags "-X main.version=$ACI_NEXT_VERSION" -o out/awesome-ci
3333
env:
3434
GOOS: linux
3535
GOARCH: amd64
3636
- name: Build arm64
37-
run: go build -v -ldflags "-X main.version=$NEXT_VERSION" -o out/awesome-ci-arm64
37+
run: go build -v -ldflags "-X main.version=$ACI_NEXT_VERSION" -o out/awesome-ci-arm64
3838
env:
3939
GOOS: linux
4040
GOARCH: arm64

.github/workflows/branchPR.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,12 @@ jobs:
3535
env:
3636
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3737
- name: Build amd64
38-
run: go build -v -ldflags "-X main.version=$NEXT_VERSION" -o out/awesome-ci
38+
run: go build -v -ldflags "-X main.version=$ACI_NEXT_VERSION" -o out/awesome-ci
3939
env:
4040
GOOS: linux
4141
GOARCH: amd64
4242
- name: Build arm64
43-
run: go build -v -ldflags "-X main.version=$NEXT_VERSION" -o out/awesome-ci-arm64
43+
run: go build -v -ldflags "-X main.version=$ACI_NEXT_VERSION" -o out/awesome-ci-arm64
4444
env:
4545
GOOS: linux
4646
GOARCH: arm64

0 commit comments

Comments
 (0)