Skip to content

Commit

Permalink
ci: fix tagged released workflow
Browse files Browse the repository at this point in the history
ci fails with

  go install github.com/rakyll/statik
  statik -f -src=./public -dest=server/ -p public
  make: statik: No such file or directory
  make: *** [Makefile:9: static] Error 127
  Error: Process completed with exit code 2.
  • Loading branch information
mougams committed Jan 22, 2025
1 parent cbc805e commit 4de22da
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/tagged-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,13 @@ jobs:
working-directory: .

steps:
- name: Set up Go
uses: actions/setup-go@v2
- name: Set up Go 1.23
uses: actions/setup-go@v5
with:
go-version: ^1.23

- name: Check out code
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down

0 comments on commit 4de22da

Please sign in to comment.