Skip to content

Commit d581409

Browse files
feat(action): remove habitat dependency
1 parent 2903e45 commit d581409

File tree

3 files changed

+3
-508
lines changed

3 files changed

+3
-508
lines changed

github-actions/projector/index.js

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -28,17 +28,9 @@ try {
2828
}
2929

3030
async function run() {
31-
try {
32-
await require('habitat-action');
33-
} catch (err) {
34-
core.setFailed(`Failed to run habitat-action: ${err.message}`);
35-
return;
36-
}
37-
38-
3931
try {
4032
core.startGroup('Installing Jarvus Hologit');
41-
await exec('hab pkg install jarvus/hologit');
33+
await exec('npm install -g hologit');
4234
} catch (err) {
4335
core.setFailed(`Failed to install Jarvus Hologit: ${err.message}`);
4436
return;

0 commit comments

Comments
 (0)