Skip to content

Commit

Permalink
Release v0.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
alajmo committed Sep 16, 2022
1 parent f783238 commit 36d9285
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
6 changes: 5 additions & 1 deletion core/run/windows.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,11 @@

package run

func SSHToServer(server string, disableVerifyHost bool, knownHostFile string) error {
import (
"github.com/alajmo/sake/core/dao"
)

func SSHToServer(server dao.Server, disableVerifyHost bool, knownHostFile string) error {
return nil
}

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

Expand Down

0 comments on commit 36d9285

Please sign in to comment.