mirror of
https://github.com/joaquinjsb/gitea-release-please-action
synced 2026-05-13 05:51:35 +02:00
feat: output list of paths released during manifest release (#362)
This commit is contained in:
5
index.js
5
index.js
@@ -44,12 +44,14 @@ async function runManifest (command) {
|
||||
if (command === 'manifest-pr') return
|
||||
|
||||
const releasesCreated = await factory.runCommand('manifest-release', manifestOpts)
|
||||
const pathsReleased = []
|
||||
if (releasesCreated) {
|
||||
core.setOutput('releases_created', true)
|
||||
for (const [path, release] of Object.entries(releasesCreated)) {
|
||||
if (!release) {
|
||||
continue
|
||||
}
|
||||
pathsReleased.push(path)
|
||||
if (path === '.') {
|
||||
core.setOutput('release_created', true)
|
||||
} else {
|
||||
@@ -64,6 +66,9 @@ async function runManifest (command) {
|
||||
}
|
||||
}
|
||||
}
|
||||
// Paths of all releases that were created, so that they can be passed
|
||||
// to matrix in next step:
|
||||
core.setOutput('paths_released', JSON.stringify(pathsReleased))
|
||||
}
|
||||
|
||||
async function main () {
|
||||
|
||||
Reference in New Issue
Block a user