We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b510060 commit 1869573Copy full SHA for 1869573
1 file changed
.github/workflows/continuous-integration.yml
@@ -114,8 +114,12 @@ jobs:
114
.map(artifact => artifact.trim())
115
.filter(Boolean)
116
.map(artifact => {
117
- if(!artifact.includes('*')) {
118
- return artifact;
+ if (!artifact.includes('*')) {
+ if (artifact.startsWith('/')) {
119
+ return artifact;
120
+ }
121
+
122
+ return `${{ github.workspace }}/${artifact}`;
123
}
124
125
// FIXME: Workaround to preserve full path to artifact
0 commit comments