2020-04-27 21:42:44 -03:00
package cmd
import (
2021-01-13 14:21:04 -03:00
"runtime"
2020-04-27 21:42:44 -03:00
"time"
"github.com/apex/log"
"github.com/caarlos0/ctrlc"
"github.com/fatih/color"
"github.com/goreleaser/goreleaser/internal/middleware"
2021-06-04 23:09:12 -03:00
"github.com/goreleaser/goreleaser/internal/pipe/git"
2020-04-27 21:42:44 -03:00
"github.com/goreleaser/goreleaser/internal/pipeline"
"github.com/goreleaser/goreleaser/pkg/context"
"github.com/spf13/cobra"
)
type releaseCmd struct {
cmd * cobra . Command
opts releaseOpts
}
type releaseOpts struct {
2021-05-21 21:07:47 -03:00
config string
releaseNotesFile string
releaseNotesTmpl string
releaseHeaderFile string
releaseHeaderTmpl string
releaseFooterFile string
releaseFooterTmpl string
2021-06-04 23:09:12 -03:00
autoSnapshot bool
2021-05-21 21:07:47 -03:00
snapshot bool
skipPublish bool
skipSign bool
skipValidate bool
2021-05-25 00:45:59 -03:00
skipAnnounce bool
2021-05-21 21:07:47 -03:00
rmDist bool
deprecated bool
parallelism int
timeout time . Duration
2020-04-27 21:42:44 -03:00
}
func newReleaseCmd ( ) * releaseCmd {
2021-04-22 10:45:36 -03:00
root := & releaseCmd { }
2020-05-15 15:19:20 +01:00
// nolint: dupl
2021-04-22 10:45:36 -03:00
cmd := & cobra . Command {
2020-04-27 21:42:44 -03:00
Use : "release" ,
Aliases : [ ] string { "r" } ,
Short : "Releases the current project" ,
SilenceUsage : true ,
SilenceErrors : true ,
2020-11-12 17:25:27 -03:00
Args : cobra . NoArgs ,
2020-04-27 21:42:44 -03:00
RunE : func ( cmd * cobra . Command , args [ ] string ) error {
start := time . Now ( )
log . Infof ( color . New ( color . Bold ) . Sprint ( "releasing..." ) )
ctx , err := releaseProject ( root . opts )
if err != nil {
return wrapError ( err , color . New ( color . Bold ) . Sprintf ( "release failed after %0.2fs" , time . Since ( start ) . Seconds ( ) ) )
}
if ctx . Deprecated {
log . Warn ( color . New ( color . Bold ) . Sprintf ( "your config is using deprecated properties, check logs above for details" ) )
}
log . Infof ( color . New ( color . Bold ) . Sprintf ( "release succeeded after %0.2fs" , time . Since ( start ) . Seconds ( ) ) )
return nil
} ,
}
cmd . Flags ( ) . StringVarP ( & root . opts . config , "config" , "f" , "" , "Load configuration from file" )
2021-05-21 21:07:47 -03:00
cmd . Flags ( ) . StringVar ( & root . opts . releaseNotesFile , "release-notes" , "" , "Load custom release notes from a markdown file" )
cmd . Flags ( ) . StringVar ( & root . opts . releaseHeaderFile , "release-header" , "" , "Load custom release notes header from a markdown file" )
cmd . Flags ( ) . StringVar ( & root . opts . releaseFooterFile , "release-footer" , "" , "Load custom release notes footer from a markdown file" )
cmd . Flags ( ) . StringVar ( & root . opts . releaseNotesTmpl , "release-notes-tmpl" , "" , "Load custom release notes from a templated markdown file (overrides --release-notes)" )
cmd . Flags ( ) . StringVar ( & root . opts . releaseHeaderTmpl , "release-header-tmpl" , "" , "Load custom release notes header from a templated markdown file (overrides --release-header)" )
cmd . Flags ( ) . StringVar ( & root . opts . releaseFooterTmpl , "release-footer-tmpl" , "" , "Load custom release notes footer from a templated markdown file (overrides --release-footer)" )
2021-06-04 23:09:12 -03:00
cmd . Flags ( ) . BoolVar ( & root . opts . autoSnapshot , "auto-snapshot" , false , "Automatically sets --snapshot if the repo is dirty" )
2021-05-25 00:45:59 -03:00
cmd . Flags ( ) . BoolVar ( & root . opts . snapshot , "snapshot" , false , "Generate an unversioned snapshot release, skipping all validations and without publishing any artifacts (implies --skip-publish, --skip-announce and --skip-validate)" )
2020-04-27 21:42:44 -03:00
cmd . Flags ( ) . BoolVar ( & root . opts . skipPublish , "skip-publish" , false , "Skips publishing artifacts" )
2021-05-25 00:45:59 -03:00
cmd . Flags ( ) . BoolVar ( & root . opts . skipAnnounce , "skip-announce" , false , "Skips announcing releases (implies --skip-validate)" )
2020-04-27 21:42:44 -03:00
cmd . Flags ( ) . BoolVar ( & root . opts . skipSign , "skip-sign" , false , "Skips signing the artifacts" )
cmd . Flags ( ) . BoolVar ( & root . opts . skipValidate , "skip-validate" , false , "Skips several sanity checks" )
cmd . Flags ( ) . BoolVar ( & root . opts . rmDist , "rm-dist" , false , "Remove the dist folder before building" )
2021-04-22 10:45:36 -03:00
cmd . Flags ( ) . IntVarP ( & root . opts . parallelism , "parallelism" , "p" , 0 , "Amount tasks to run concurrently (default: number of CPUs)" )
2020-04-27 21:42:44 -03:00
cmd . Flags ( ) . DurationVar ( & root . opts . timeout , "timeout" , 30 * time . Minute , "Timeout to the entire release process" )
cmd . Flags ( ) . BoolVar ( & root . opts . deprecated , "deprecated" , false , "Force print the deprecation message - tests only" )
_ = cmd . Flags ( ) . MarkHidden ( "deprecated" )
root . cmd = cmd
return root
}
func releaseProject ( options releaseOpts ) ( * context . Context , error ) {
cfg , err := loadConfig ( options . config )
if err != nil {
return nil , err
}
ctx , cancel := context . NewWithTimeout ( cfg , options . timeout )
defer cancel ( )
2020-05-15 15:19:20 +01:00
setupReleaseContext ( ctx , options )
2020-04-27 21:42:44 -03:00
return ctx , ctrlc . Default . Run ( ctx , func ( ) error {
for _ , pipe := range pipeline . Pipeline {
if err := middleware . Logging (
pipe . String ( ) ,
middleware . ErrHandler ( pipe . Run ) ,
middleware . DefaultInitialPadding ,
) ( ctx ) ; err != nil {
return err
}
}
return nil
} )
}
2020-05-15 15:19:20 +01:00
func setupReleaseContext ( ctx * context . Context , options releaseOpts ) * context . Context {
2021-04-22 10:45:36 -03:00
ctx . Parallelism = runtime . NumCPU ( )
if options . parallelism > 0 {
ctx . Parallelism = options . parallelism
}
2020-04-27 21:42:44 -03:00
log . Debugf ( "parallelism: %v" , ctx . Parallelism )
2021-05-21 21:07:47 -03:00
ctx . ReleaseNotesFile = options . releaseNotesFile
ctx . ReleaseNotesTmpl = options . releaseNotesTmpl
ctx . ReleaseHeaderFile = options . releaseHeaderFile
ctx . ReleaseHeaderTmpl = options . releaseHeaderTmpl
ctx . ReleaseFooterFile = options . releaseFooterFile
ctx . ReleaseFooterTmpl = options . releaseFooterTmpl
2020-04-27 21:42:44 -03:00
ctx . Snapshot = options . snapshot
2021-06-04 23:09:12 -03:00
if options . autoSnapshot && git . CheckDirty ( ) != nil {
log . Info ( "git repo is dirty and --auto-snapshot is set, implying --snapshot" )
ctx . Snapshot = true
}
2020-04-27 21:42:44 -03:00
ctx . SkipPublish = ctx . Snapshot || options . skipPublish
2021-05-25 00:45:59 -03:00
ctx . SkipAnnounce = ctx . Snapshot || options . skipPublish || options . skipAnnounce
2020-04-27 21:42:44 -03:00
ctx . SkipValidate = ctx . Snapshot || options . skipValidate
ctx . SkipSign = options . skipSign
ctx . RmDist = options . rmDist
// test only
ctx . Deprecated = options . deprecated
return ctx
}