generated from actions/javascript-action
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove commented out code (not required)
- Loading branch information
1 parent
53a8e47
commit 61e5a48
Showing
1 changed file
with
0 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,22 +16,6 @@ async function run() { | |
const octokit = new github.GitHub(token); | ||
// --------------- End octokit initialization --------------- | ||
|
||
// --------------- Checkout code --------------- // | ||
// console.log("Checkout code"); | ||
// | ||
// await exec.exec( | ||
// `git clone [email protected]:${github.context.repo.owner}/${ | ||
// github.context.repo.repo | ||
// }` | ||
// ); | ||
// | ||
// const refBranch = github.context.ref; | ||
// console.log("ref", refBranch); | ||
// const branch = refBranch.split("refs/heads/")[1]; | ||
// await exec.exec(`git checkout ${branch}`); | ||
// | ||
// End --------------- Checkout code --------------- // | ||
|
||
// --------------- Build repo --------------- | ||
const bootstrap = core.getInput("bootstrap"), | ||
build_command = core.getInput("build_command"), | ||
|