Skip to content

Commit 50f9ba3

Browse files
committed
Reverted artifact routes
1 parent b776c07 commit 50f9ba3

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

03-cd/01-jenkins/02-construyendo-pipelines-reusables/00_clean_code_refactor_pipelines.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ pipeline {
126126
expression { return params.RC }
127127
}
128128
steps {
129-
archiveArtifacts('01/app/')
129+
archiveArtifacts('01/src/app/')
130130
}
131131
}
132132
/*diff*/
@@ -151,7 +151,7 @@ stage('Publish') {
151151
expression { return params.RC }
152152
}
153153
steps {
154-
archiveArtifacts('01/app/')
154+
archiveArtifacts('01/src/app/')
155155
}
156156
}
157157
```
@@ -214,7 +214,7 @@ pipeline {
214214
expression { return params.RC }
215215
}
216216
steps {
217-
archiveArtifacts('01/app/')
217+
archiveArtifacts('01/src/app/')
218218
}
219219
}
220220
}

03-cd/01-jenkins/02-construyendo-pipelines-reusables/01_usando_librerias_compartidas.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ pipeline {
197197
expression { return params.RC }
198198
}
199199
steps {
200-
archiveArtifacts('01/app/')
200+
archiveArtifacts('01/src/app/')
201201
}
202202
}
203203
}

03-cd/01-jenkins/02-construyendo-pipelines-reusables/02_pipeline_development_tools.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ pipeline {
5959
expression { return params.RC }
6060
}
6161
steps {
62-
archiveArtifacts('01/app/')
62+
archiveArtifacts('01/src/app/')
6363
}
6464
}
6565
}

0 commit comments

Comments
 (0)