From 3fc2db854370a51a12a53147b67e671bca9bb1c4 Mon Sep 17 00:00:00 2001 From: Alnus Tmp Date: Sun, 20 Aug 2023 23:04:46 +0000 Subject: [PATCH] chore: cambia pipeline por steps --- Rakefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Rakefile b/Rakefile index 17ebbb1..1ddb0e4 100644 --- a/Rakefile +++ b/Rakefile @@ -12,8 +12,8 @@ end desc 'poblar entorno' task :init => [:up] do pecker = YAML.load_file(WOODPECKER_YML) - ['tests', 'style'].each do |pipeline| - pecker.dig('pipeline', pipeline, 'commands').grep(/install/).each do |cmd| + ['tests', 'style'].each do |steps| + pecker.dig('steps', steps, 'commands').grep(/install/).each do |cmd| compose('exec', 'app.dev', cmd) end end