Skip to content

Commit

Permalink
Fix workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
anuraaga committed Nov 20, 2024
1 parent fd63667 commit 3436426
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ jobs:
cache-dependency-path: "**/go.sum"

- name: run checks
run: go run build check
run: go run ./build check

- name: build snapshot
if: startsWith(matrix.os, 'ubuntu-')
run: go run build snapshot
run: go run ./build snapshot
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ jobs:
go-version-file: go.work
cache-dependency-path: "**/go.sum"

- run: go run build release
- run: go run ./build release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion .github/workflows/update-upstream.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
go-version-file: go.work
cache-dependency-path: "**/go.sum"

- run: go run build update
- run: go run ./build update
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Expand Down

0 comments on commit 3436426

Please sign in to comment.