Skip to content

Commit

Permalink
ci: fix go version
Browse files Browse the repository at this point in the history
  • Loading branch information
monkeyWie committed Oct 17, 2023
1 parent 39d1028 commit 6316e99
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
workflow_dispatch:

env:
GO_VERSION: "1.19"
GO_VERSION: "1.19.12"
FLUTTER_VERSION: "3.10.6"

permissions:
Expand Down Expand Up @@ -134,7 +134,7 @@ jobs:
- name: Build
run: |
go install src.techknowlogick.com/xgo@latest
xgo -go go-$GO_VERSION.x --targets=darwin/arm64 -tags="nosqlite" -ldflags="-w -s" -buildmode=c-shared -pkg=bind/desktop -out=libgopeed .
xgo -go go-1.19.x --targets=darwin/arm64 -tags="nosqlite" -ldflags="-w -s" -buildmode=c-shared -pkg=bind/desktop -out=libgopeed .
mv libgopeed-*.dylib libgopeed.dylib
- uses: actions/upload-artifact@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ on:
- "Dockerfile"

env:
GO_VERSION: "1.19"
GO_VERSION: "1.19.12"

permissions:
contents: write
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ on:
- "go.sum"

env:
GO_VERSION: "1.19"
GO_VERSION: "1.19.12"
FLUTTER_VERSION: "3.10.6"

jobs:
Expand Down

0 comments on commit 6316e99

Please sign in to comment.