Skip to content
This repository was archived by the owner on Nov 24, 2023. It is now read-only.

Commit 5ce4832

Browse files
feat: build for release
1 parent 143b0bb commit 5ce4832

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

build.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"owner":"technote-space","repo":"get-diff-action","sha":"FETCH_HEAD","ref":"refs/heads/master","tagName":"test/v6.1.1","branch":"gh-actions","tags":["test/v6.1.1","test/v6.1","test/v6"],"updated_at":"2022-10-14T16:21:44.393Z"}
1+
{"owner":"technote-space","repo":"get-diff-action","sha":"FETCH_HEAD","ref":"refs/heads/master","tagName":"test/v6.1.1","branch":"gh-actions","tags":["test/v6.1.1","test/v6.1","test/v6"],"updated_at":"2022-10-16T08:21:55.823Z"}

lib/main.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ function issue(name, message = '') {
131131
}
132132
command$1.issue = issue;
133133
const CMD_STRING = '::';
134-
class Command$1 {
134+
let Command$1 = class Command {
135135
constructor(command, properties, message) {
136136
if (!command) {
137137
command = 'missing.command';
@@ -163,7 +163,7 @@ class Command$1 {
163163
cmdStr += `${CMD_STRING}${escapeData(this.message)}`;
164164
return cmdStr;
165165
}
166-
}
166+
};
167167
function escapeData(s) {
168168
return utils_1$2.toCommandValue(s)
169169
.replace(/%/g, '%25')
@@ -2619,7 +2619,7 @@ Object.defineProperty(context, "__esModule", { value: true });
26192619
var Context_1 = context.Context = void 0;
26202620
const fs_1 = fs$1;
26212621
const os_1 = require$$0;
2622-
class Context$1 {
2622+
let Context$1 = class Context {
26232623
/**
26242624
* Hydrate the context from the environment
26252625
*/
@@ -2665,7 +2665,7 @@ class Context$1 {
26652665
}
26662666
throw new Error("context.repo requires a GITHUB_REPOSITORY environment variable like 'owner/repo'");
26672667
}
2668-
}
2668+
};
26692669
Context_1 = context.Context = Context$1;
26702670

26712671
const getBoolValue$1 = (input) => !['false', '0', '', 'no', 'n'].includes(input.trim().toLowerCase());

0 commit comments

Comments
 (0)