mirror of
https://github.com/JuliusFreudenberger/portainer-stack-git-redeploy-action.git
synced 2024-11-23 19:34:39 +01:00
65 lines
1.6 KiB
JavaScript
65 lines
1.6 KiB
JavaScript
const core = require("@actions/core")
|
|
|
|
let portainerUrl = core.getInput("portainerUrl")
|
|
const accessToken = core.getInput("accessToken")
|
|
const stackId = parseInt(core.getInput("stackId"))
|
|
const endpointId = parseInt(core.getInput("endpointId"))
|
|
const environmentVariables = core.getInput("environment")
|
|
|
|
if (isNaN(stackId)) {
|
|
core.setFailed("Stack ID must be integer")
|
|
process.exit(1)
|
|
}
|
|
|
|
let client
|
|
|
|
if (portainerUrl.includes("http:")) {
|
|
client = require("http")
|
|
} else {
|
|
client = require("https")
|
|
|
|
if (!portainerUrl.includes("https:")) {
|
|
portainerUrl = `https://${portainerUrl}`
|
|
}
|
|
}
|
|
|
|
if (portainerUrl.substring(portainerUrl.length - 1) === "/") {
|
|
portainerUrl = portainerUrl.substring(0, portainerUrl.length - 1)
|
|
}
|
|
|
|
core.setSecret(portainerUrl)
|
|
core.setSecret(accessToken)
|
|
|
|
const postDataObject = {
|
|
pullImage: true,
|
|
}
|
|
|
|
console.dir(environmentVariables)
|
|
if (environmentVariables !== undefined && environmentVariables !== "") {
|
|
postDataObject.env = JSON.parse(environmentVariables)
|
|
}
|
|
|
|
const postData = JSON.stringify(postDataObject)
|
|
|
|
console.dir(postData)
|
|
|
|
const req = client.request(`${portainerUrl}/api/stacks/${stackId}/git/redeploy` + (isNaN(endpointId) ? "" : `?endpointId=${endpointId}`), {
|
|
method: "PUT",
|
|
headers: {
|
|
"X-API-Key": accessToken,
|
|
"Content-Type": "application/json",
|
|
"Content-Length": Buffer.byteLength(postData)
|
|
}
|
|
}, (res) => {
|
|
if (res.statusCode !== 200) {
|
|
core.setFailed(res.statusMessage)
|
|
process.exit(2)
|
|
}
|
|
})
|
|
.on("error", (error) => {
|
|
core.setFailed(error.message)
|
|
process.exit(3)
|
|
})
|
|
|
|
req.write(postData)
|
|
req.end()
|