2020-05-07 03:41:40 -06:00
|
|
|
const core = require('@actions/core')
|
|
|
|
const fs = require('fs')
|
|
|
|
|
|
|
|
function rm(file) {
|
2020-12-06 08:54:45 -07:00
|
|
|
if (fs.existsSync(file)) {
|
2022-09-01 00:37:48 -06:00
|
|
|
core.info(`Deleting "${file}" file`)
|
2020-12-06 08:54:45 -07:00
|
|
|
fs.unlinkSync(file)
|
|
|
|
}
|
2020-05-07 03:41:40 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
async function main() {
|
|
|
|
try {
|
2020-05-14 12:16:43 -06:00
|
|
|
const directory = core.getState("directory")
|
2024-01-17 02:06:09 -07:00
|
|
|
const ansibleConfigurationFile = core.getState("ansibleConfigurationFile")
|
2020-05-07 03:41:40 -06:00
|
|
|
const keyFile = core.getState("keyFile")
|
|
|
|
const inventoryFile = core.getState("inventoryFile")
|
|
|
|
const vaultPasswordFile = core.getState("vaultPasswordFile")
|
2021-04-04 12:51:37 -06:00
|
|
|
const knownHostsFile = core.getState("knownHostsFile")
|
2020-05-07 03:41:40 -06:00
|
|
|
|
2020-05-14 12:16:43 -06:00
|
|
|
if (directory)
|
|
|
|
process.chdir(directory)
|
2024-01-17 02:06:09 -07:00
|
|
|
|
|
|
|
if (ansibleConfigurationFile)
|
|
|
|
rm(ansibleConfigurationFile)
|
2020-05-14 12:16:43 -06:00
|
|
|
|
2020-05-07 03:41:40 -06:00
|
|
|
if (keyFile)
|
|
|
|
rm(keyFile)
|
|
|
|
|
|
|
|
if (inventoryFile)
|
|
|
|
rm(inventoryFile)
|
|
|
|
|
|
|
|
if (vaultPasswordFile)
|
|
|
|
rm(vaultPasswordFile)
|
2021-04-04 12:51:37 -06:00
|
|
|
|
|
|
|
if (knownHostsFile)
|
|
|
|
rm(knownHostsFile)
|
|
|
|
|
2020-05-07 03:41:40 -06:00
|
|
|
} catch (error) {
|
|
|
|
core.setFailed(error.message)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
main()
|