File tree Expand file tree Collapse file tree 2 files changed +12
-1
lines changed
Expand file tree Collapse file tree 2 files changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -100,6 +100,11 @@ jobs:
100100 identifiers.push(version.name);
101101 }
102102
103+ if (tags.length === 0) {
104+ core.info(`Skipping version ${version.id} - no tags found`);
105+ continue;
106+ }
107+
103108 const hasReleaseTag = tags.some(tag => tag.startsWith('v'));
104109 if (hasReleaseTag) {
105110 continue;
Original file line number Diff line number Diff line change 11# Tests / Code Coverage workflow
2- # This workflow is triggered by ci_release.yml workflow
2+ # This workflow is triggered by ci_release.yml workflow or manually
33name : Tests / Code Coverage
44on :
55 workflow_call :
66 inputs :
77 image-tag :
88 required : true
99 type : string
10+ workflow_dispatch :
11+ inputs :
12+ image-tag :
13+ description : ' Docker image tag to build (e.g., v1.2.3, sha-abc123)'
14+ required : true
15+ type : string
1016
1117jobs :
1218 build-ev-node-image :
You can’t perform that action at this time.
0 commit comments