Skip to content

Commit 36d9285

Browse files
committed
Release v0.11.0
1 parent f783238 commit 36d9285

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

core/run/windows.go

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,11 @@
33

44
package run
55

6-
func SSHToServer(server string, disableVerifyHost bool, knownHostFile string) error {
6+
import (
7+
"github.com/alajmo/sake/core/dao"
8+
)
9+
10+
func SSHToServer(server dao.Server, disableVerifyHost bool, knownHostFile string) error {
711
return nil
812
}
913

docs/development.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,10 @@ The following workflow is used for releasing a new `sake` version:
4444
1. Create pull request with changes
4545
2. Generate manpage `make gen-man`
4646
3. Pass all tests
47-
4. Update `Makefile` and `CHANGELOG.md` with correct version, and add all changes to `CHANGELOG.md`
48-
5. Squash-merge to main with `Release vx.y.z` and description of changes
49-
6. Run `make release`, which will:
47+
4. Run `make build-all` to verify windows build
48+
5. Update `Makefile` and `CHANGELOG.md` with correct version, and add all changes to `CHANGELOG.md`
49+
6. Squash-merge to main with `Release vx.y.z` and description of changes
50+
7. Run `make release`, which will:
5051
1. Create a git tag with release notes
5152
2. Trigger a build in Github that builds cross-platform binaries and generates release notes of changes between current and previous tag
5253

0 commit comments

Comments
 (0)