Skip to content

Commit

Permalink
fix: release (#150)
Browse files Browse the repository at this point in the history
  • Loading branch information
prgres committed Jun 6, 2024
1 parent 52be8d3 commit e865eed
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,15 @@ jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [~1.22, ~1.22.3, ^1]
steps:
- name: Install Go
uses: actions/setup-go@v2
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
go-version-file: "go.mod"
check-latest: true # tmp

- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: fmt
run: make fmt
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,10 @@ jobs:
uses: actions/checkout@v4

- name: Install Go
uses: actions/setup-go@v2
uses: actions/setup-go@v5
with:
go-version: ^1
go-version-file: "go.mod"
check-latest: true # tmp

- name: Build the binary
env:
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/prgrs/clickup

go 1.22.3
go 1.22.4

require (
github.com/charmbracelet/bubbletea v0.25.0
Expand Down

0 comments on commit e865eed

Please sign in to comment.