mirror of
https://github.com/dawidd6/action-ansible-playbook.git
synced 2024-11-22 07:26:25 +00:00
28 lines
615 B
JavaScript
28 lines
615 B
JavaScript
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()
|