Skip to content

Commit

Permalink
Output 'created' as string
Browse files Browse the repository at this point in the history
  • Loading branch information
lexuzieel authored Nov 14, 2022
1 parent a1025ec commit 947ec37
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ async function createVm(

core.startGroup('Create new VM');

core.setOutput('created', true);
core.setOutput('created', 'true');

let op = await instanceService.create(
CreateInstanceRequest.fromPartial({
Expand Down Expand Up @@ -187,7 +187,7 @@ async function updateMetadata(
): Promise<Operation> {
core.startGroup('Update metadata');

core.setOutput('created', false);
core.setOutput('created', 'false');

let op = await instanceService.updateMetadata(
UpdateInstanceMetadataRequest.fromPartial({
Expand Down

0 comments on commit 947ec37

Please # to comment.