Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/workflows/release-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,14 @@ jobs:
with:
fetch-depth: 0

# The monorel CI action runs `go mod tidy` per sub-module to refresh
# go.sum entries. Sub-modules require Go 1.25; the runner default is
# older and the action sets GOTOOLCHAIN=local, so install the Go we
# need explicitly before invoking monorel.
- uses: actions/setup-go@v5
with:
go-version: '1.25'

- uses: disaresta-org/monorel/ci/github@v0.11.0
with:
command: pr
8 changes: 8 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,14 @@ jobs:
with:
fetch-depth: 0

# The monorel CI action runs `go mod tidy` per sub-module to refresh
# go.sum entries. Sub-modules require Go 1.25; the runner default is
# older and the action sets GOTOOLCHAIN=local, so install the Go we
# need explicitly before invoking monorel.
- uses: actions/setup-go@v5
with:
go-version: '1.25'

- uses: disaresta-org/monorel/ci/github@v0.11.0
with:
command: release
Expand Down
Loading