Skip to content

Commit d813867

Browse files
committed
fix workflow
1 parent e1388ff commit d813867

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.github/workflows/bin-package-no-tag.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ on:
1717
jobs:
1818
builder:
1919
name: builder
20-
runs-on: ubuntu-20.04
20+
runs-on: ubuntu-22.04
2121
steps:
2222
- name: Checkout code into the Go module directory
2323
uses: actions/checkout@v1

.github/workflows/publish.yaml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,18 +15,17 @@ jobs:
1515
name: Build and upload
1616
runs-on: ubuntu-latest
1717
steps:
18-
- name: Set up Go 1.23
18+
- name: Set up Go 1.21
1919
uses: actions/setup-go@v1
2020
with:
21-
go-version: 1.23
21+
go-version: 1.21
2222
id: go
2323

2424
- name: Checkout code into the Go module directory
2525
uses: actions/checkout@v1
2626

2727
- name: Build binaries
2828
run: |
29-
go generate ./pkg/capacity/...
3029
cd cmds
3130
make
3231
env:

0 commit comments

Comments
 (0)