forked from AkhileshNS/heroku-deploy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
275 lines (248 loc) · 7.78 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
const p = require("phin");
const core = require("@actions/core");
const { execSync } = require("child_process");
const fs = require("fs");
const path = require("path");
// Support Functions
const sleep = (ms) => new Promise((resolve) => setTimeout(resolve, ms));
const createCatFile = ({ email, api_key }) => `cat >~/.netrc <<EOF
machine api.heroku.com
login ${email}
password ${api_key}
machine git.heroku.com
login ${email}
password ${api_key}
EOF`;
const addRemote = ({ app_name, dontautocreate, buildpack, region, team, stack }) => {
try {
execSync("heroku git:remote --app " + app_name);
console.log("Added git remote heroku");
} catch (err) {
if (dontautocreate) throw err;
execSync(
"heroku create " +
app_name +
(buildpack ? " --buildpack " + buildpack : "") +
(region ? " --region " + region : "") +
(stack ? " --stack " + stack : "") +
(team ? " --team " + team : "")
);
}
};
const addConfig = ({ app_name, env_file, appdir }) => {
let configVars = [];
for (let key in process.env) {
if (key.startsWith("HD_")) {
configVars.push(key.substring(3) + "='" + process.env[key] + "'");
}
}
if (env_file) {
const env = fs.readFileSync(path.join(appdir, env_file), "utf8");
const variables = require("dotenv").parse(env);
const newVars = [];
for (let key in variables) {
newVars.push(key + "=" + variables[key]);
}
configVars = [...configVars, ...newVars];
}
if (configVars.length !== 0) {
execSync(`heroku config:set --app=${app_name} ${configVars.join(" ")}`);
}
};
const createProcfile = ({ procfile, appdir }) => {
if (procfile) {
fs.writeFileSync(path.join(appdir, "Procfile"), procfile);
execSync(`git add -A && git commit -m "Added Procfile"`);
console.log("Written Procfile with custom configuration");
}
};
const deploy = ({
dontuseforce,
app_name,
branch,
usedocker,
dockerHerokuProcessType,
dockerBuildArgs,
appdir,
}) => {
const force = !dontuseforce ? "--force" : "";
if (usedocker) {
execSync(
`heroku container:push ${dockerHerokuProcessType} --app ${app_name} ${dockerBuildArgs}`,
appdir ? { cwd: appdir } : null
);
execSync(
`heroku container:release ${dockerHerokuProcessType} --app ${app_name}`,
appdir ? { cwd: appdir } : null
);
} else {
let remote_branch = execSync(
"git remote show heroku | grep 'HEAD' | cut -d':' -f2 | sed -e 's/^ *//g' -e 's/ *$//g'"
)
.toString()
.trim();
if (remote_branch === "master") {
execSync("heroku plugins:install heroku-repo");
execSync("heroku repo:reset -a " + app_name);
}
if (appdir === "") {
execSync(`git push heroku ${branch}:refs/heads/main ${force}`, {
maxBuffer: 104857600,
});
} else {
execSync(
`git push ${force} heroku \`git subtree split --prefix=${appdir} ${branch}\`:refs/heads/main`,
{ maxBuffer: 104857600 }
);
}
}
};
const healthcheckFailed = ({
rollbackonhealthcheckfailed,
app_name,
appdir,
}) => {
if (rollbackonhealthcheckfailed) {
execSync(
`heroku rollback --app ${app_name}`,
appdir ? { cwd: appdir } : null
);
core.setFailed(
"Health Check Failed. Error deploying Server. Deployment has been rolled back. Please check your logs on Heroku to try and diagnose the problem"
);
} else {
core.setFailed(
"Health Check Failed. Error deploying Server. Please check your logs on Heroku to try and diagnose the problem"
);
}
};
// Input Variables
let heroku = {
api_key: core.getInput("heroku_api_key"),
email: core.getInput("heroku_email"),
app_name: core.getInput("heroku_app_name"),
buildpack: core.getInput("buildpack"),
branch: core.getInput("branch"),
dontuseforce: core.getInput("dontuseforce") === "false" ? false : true,
dontautocreate: core.getInput("dontautocreate") === "false" ? false : true,
usedocker: core.getInput("usedocker") === "false" ? false : true,
dockerHerokuProcessType: core.getInput("docker_heroku_process_type"),
dockerBuildArgs: core.getInput("docker_build_args"),
appdir: core.getInput("appdir"),
healthcheck: core.getInput("healthcheck"),
checkstring: core.getInput("checkstring"),
delay: parseInt(core.getInput("delay")),
procfile: core.getInput("procfile"),
rollbackonhealthcheckfailed:
core.getInput("rollbackonhealthcheckfailed") === "false" ? false : true,
env_file: core.getInput("env_file"),
justlogin: core.getInput("justlogin") === "false" ? false : true,
region: core.getInput("region"),
stack: core.getInput("stack"),
team: core.getInput("team"),
};
// Formatting
if (heroku.appdir) {
heroku.appdir =
heroku.appdir[0] === "." && heroku.appdir[1] === "/"
? heroku.appdir.slice(2)
: heroku.appdir[0] === "/"
? heroku.appdir.slice(1)
: heroku.appdir;
}
// Collate docker build args into arg list
if (heroku.dockerBuildArgs) {
heroku.dockerBuildArgs = heroku.dockerBuildArgs
.split("\n")
.map((arg) => `${arg}="${process.env[arg]}"`)
.join(",");
heroku.dockerBuildArgs = heroku.dockerBuildArgs
? `--arg ${heroku.dockerBuildArgs}`
: "";
}
(async () => {
// Program logic
try {
// Just Login
if (heroku.justlogin) {
execSync(createCatFile(heroku));
console.log("Created and wrote to ~/.netrc");
return;
}
execSync(`git config user.name "Heroku-Deploy"`);
execSync(`git config user.email "${heroku.email}"`);
const status = execSync("git status --porcelain").toString().trim();
if (status) {
execSync(
'git add -A && git commit -m "Commited changes from previous actions"'
);
}
// Check if using Docker
if (!heroku.usedocker) {
// Check if Repo clone is shallow
const isShallow = execSync(
"git rev-parse --is-shallow-repository"
).toString();
// If the Repo clone is shallow, make it unshallow
if (isShallow === "true\n") {
execSync("git fetch --prune --unshallow");
}
}
execSync(createCatFile(heroku));
console.log("Created and wrote to ~/.netrc");
createProcfile(heroku);
if (heroku.usedocker) {
execSync("heroku container:login");
}
console.log("Successfully logged into heroku");
addRemote(heroku);
addConfig(heroku);
try {
deploy({ ...heroku, dontuseforce: true });
} catch (err) {
console.error(`
Unable to push branch because the branch is behind the deployed branch. Using --force to deploy branch.
(If you want to avoid this, set dontuseforce to 1 in with: of .github/workflows/action.yml.
Specifically, the error was: ${err}
`);
deploy(heroku);
}
if (heroku.healthcheck) {
if (typeof heroku.delay === "number" && heroku.delay !== NaN) {
await sleep(heroku.delay * 1000);
}
try {
const res = await p(heroku.healthcheck);
if (res.statusCode !== 200) {
throw new Error(
"Status code of network request is not 200: Status code - " +
res.statusCode
);
}
if (heroku.checkstring && heroku.checkstring !== res.body.toString()) {
throw new Error("Failed to match the checkstring");
}
console.log(res.body.toString());
} catch (err) {
console.log(err.message);
healthcheckFailed(heroku);
}
}
core.setOutput(
"status",
"Successfully deployed heroku app from branch " + heroku.branch
);
} catch (err) {
if (
heroku.dontautocreate &&
err.toString().includes("Couldn't find that app")
) {
core.setOutput(
"status",
"Skipped deploy to heroku app from branch " + heroku.branch
);
} else {
core.setFailed(err.toString());
}
}
})();