-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
40 lines (33 loc) · 1.1 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
const fs = require('fs');
const path = require('path');
const yaml = require('js-yaml');
const core = require('@actions/core');
try {
const config = yaml.load(fs.readFileSync('diploi.yaml', 'utf-8'));
const componentsOutput = [];
for (const component of config.components) {
if (!fs.existsSync(component.identifier)) {
throw new Error(
`Folder /${component.identifier} for the ${component.identifier} component is missing.`
);
}
const isDevImageAvailable = fs.existsSync(path.join(component.identifier, 'Dockerfile.dev'));
const componentOutput = {
identifier: component.identifier,
name: component.name || component.identifier,
folder: component.identifier,
type: isDevImageAvailable ? 'main' : 'main-dev',
};
componentsOutput.push(componentOutput);
if (isDevImageAvailable) {
componentsOutput.push({
...componentOutput,
name: `${componentOutput.name} Dev`,
type: 'dev',
});
}
}
core.setOutput('components', JSON.stringify(componentsOutput));
} catch (error) {
core.setFailed(error.message);
}