Skip to content

Commit 1869573

Browse files
committed
fix(continuous-integration): support relative non-glob build path
Signed-off-by: Emilien Escalle <emilien.escalle@escemi.com>
1 parent b510060 commit 1869573

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

.github/workflows/continuous-integration.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,8 +114,12 @@ jobs:
114114
.map(artifact => artifact.trim())
115115
.filter(Boolean)
116116
.map(artifact => {
117-
if(!artifact.includes('*')) {
118-
return artifact;
117+
if (!artifact.includes('*')) {
118+
if (artifact.startsWith('/')) {
119+
return artifact;
120+
}
121+
122+
return `${{ github.workspace }}/${artifact}`;
119123
}
120124
121125
// FIXME: Workaround to preserve full path to artifact

0 commit comments

Comments
 (0)