chore: cambia pipeline por steps
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed

This commit is contained in:
Alnus Tmp 2023-08-20 23:04:46 +00:00
parent 881f34d582
commit 3fc2db8543

View File

@ -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