Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

feat: add release command to cli #46

Merged
merged 1 commit into from
Nov 1, 2021
Merged
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
2 changes: 2 additions & 0 deletions cmd/uplift/main.go
Original file line number Diff line number Diff line change
@@ -23,6 +23,7 @@ SOFTWARE.
package main

import (
"fmt"
"os"

"github.com/gembaadvantage/uplift/internal/context"
@@ -31,6 +32,7 @@ import (
func main() {
cfg, err := loadConfig()
if err != nil {
fmt.Printf("failed to load uplift config. %v", err)
os.Exit(1)
}

81 changes: 81 additions & 0 deletions cmd/uplift/release.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,81 @@
/*
Copyright (c) 2021 Gemba Advantage

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/

package main

import (
"io"

"github.com/gembaadvantage/uplift/internal/context"
"github.com/gembaadvantage/uplift/internal/middleware/logging"
"github.com/gembaadvantage/uplift/internal/middleware/skip"
"github.com/gembaadvantage/uplift/internal/task"
"github.com/gembaadvantage/uplift/internal/task/bump"
"github.com/gembaadvantage/uplift/internal/task/currentversion"
"github.com/gembaadvantage/uplift/internal/task/fetchtag"
"github.com/gembaadvantage/uplift/internal/task/gitpush"
"github.com/gembaadvantage/uplift/internal/task/nextcommit"
"github.com/gembaadvantage/uplift/internal/task/nextversion"
"github.com/gembaadvantage/uplift/internal/task/tag"
"github.com/spf13/cobra"
)

const (
releaseDesc = `Release the next semantic version of your git repository. A release
will automatically bump any files and tag the associated commit with
the required semantic version`
)

func newReleaseCmd(out io.Writer, ctx *context.Context) *cobra.Command {
cmd := &cobra.Command{
Use: "release",
Short: "Release the next semantic version of a repository",
Long: releaseDesc,
Args: cobra.NoArgs,
RunE: func(cmd *cobra.Command, args []string) error {
return release(out, ctx)
},
}

cmd.Flags().BoolVar(&ctx.FetchTags, "fetch-all", false, "fetch all tags from the remote repository")
return cmd
}

func release(out io.Writer, ctx *context.Context) error {
tsks := []task.Runner{
fetchtag.Task{},
currentversion.Task{},
nextversion.Task{},
nextcommit.Task{},
bump.Task{},
gitpush.Task{},
tag.Task{},
}

for _, tsk := range tsks {
if err := skip.Running(tsk.Skip, logging.Log(tsk.String(), tsk.Run))(ctx); err != nil {
return err
}
}

return nil
}
3 changes: 2 additions & 1 deletion cmd/uplift/root.go
Original file line number Diff line number Diff line change
@@ -53,7 +53,8 @@ func newRootCmd(out io.Writer, args []string, ctx *context.Context) (*cobra.Comm
cmd.AddCommand(newVersionCmd(out),
newBumpCmd(out, ctx),
newCompletionCmd(out),
newTagCmd(out, ctx))
newTagCmd(out, ctx),
newReleaseCmd(out, ctx))

return cmd, nil
}