From 05f07a4d9afb6ff22ec676d89c3f5655a4070ebf Mon Sep 17 00:00:00 2001 From: Ryan Currah Date: Wed, 29 Jul 2020 22:29:31 -0400 Subject: [PATCH] feat(pipeline): change the pipeline order to support additional template variables in the before pipe (#1711) This change allows us to use all the template variables in the named templates in the before hook. Issue: GH-1710 Co-authored-by: Ryan Currah --- internal/pipeline/pipeline.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/pipeline/pipeline.go b/internal/pipeline/pipeline.go index 6bcdbb474..9b39e9a22 100644 --- a/internal/pipeline/pipeline.go +++ b/internal/pipeline/pipeline.go @@ -37,10 +37,10 @@ type Piper interface { // BuildPipeline contains all build-related pipe implementations in order // nolint:gochecknoglobals var BuildPipeline = []Piper{ - before.Pipe{}, // run global hooks before build env.Pipe{}, // load and validate environment variables git.Pipe{}, // get and validate git repo state semver.Pipe{}, // parse current tag to a semver + before.Pipe{}, // run global hooks before build defaults.Pipe{}, // load default configs snapshot.Pipe{}, // snapshot version handling dist.Pipe{}, // ensure ./dist is clean