Skip to content

Commit

Permalink
compile
Browse files Browse the repository at this point in the history
  • Loading branch information
shinohara-rin committed Mar 13, 2024
1 parent 2adb629 commit 9b95a96
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
12 changes: 6 additions & 6 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -31160,12 +31160,12 @@ function ensure_install_ovmf() {
};

try {
const os = core.getInput('os');
const version = core.getInput('version');
const arch = core.getInput('arch');
const cpu = core.getInput('cpu');
const bios = core.getInput('bios');
const machine = core.getInput('machine');
let os = core.getInput('os');
let version = core.getInput('version');
let arch = core.getInput('arch');
let cpu = core.getInput('cpu');
let bios = core.getInput('bios');
let machine = core.getInput('machine');
let os_image_url = core.getInput('os_image_url');

// await shell("bash run.sh onStarted" );
Expand Down
12 changes: 6 additions & 6 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -270,12 +270,12 @@ function ensure_install_ovmf() {
};

try {
const os = core.getInput('os');
const version = core.getInput('version');
const arch = core.getInput('arch');
const cpu = core.getInput('cpu');
const bios = core.getInput('bios');
const machine = core.getInput('machine');
let os = core.getInput('os');
let version = core.getInput('version');
let arch = core.getInput('arch');
let cpu = core.getInput('cpu');
let bios = core.getInput('bios');
let machine = core.getInput('machine');
let os_image_url = core.getInput('os_image_url');

// await shell("bash run.sh onStarted" );
Expand Down

0 comments on commit 9b95a96

Please sign in to comment.