add post script

This commit is contained in:
Dawid Dziurla 2020-05-07 11:41:40 +02:00
parent 9fa54a34c7
commit 6249522d7c
No known key found for this signature in database
GPG Key ID: 7B6D8368172E9B0B

28
post.js Normal file
View File

@ -0,0 +1,28 @@
const core = require('@actions/core')
const fs = require('fs')
function rm(file) {
core.info(`==> Deleting "${file}" file`)
fs.unlinkSync(file)
}
async function main() {
try {
const keyFile = core.getState("keyFile")
const inventoryFile = core.getState("inventoryFile")
const vaultPasswordFile = core.getState("vaultPasswordFile")
if (keyFile)
rm(keyFile)
if (inventoryFile)
rm(inventoryFile)
if (vaultPasswordFile)
rm(vaultPasswordFile)
} catch (error) {
core.setFailed(error.message)
}
}
main()