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

Commit

Permalink
feat: build for release
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Oct 16, 2022
1 parent 143b0bb commit 5ce4832
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion build.json
Original file line number Diff line number Diff line change
@@ -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"}
{"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"}
8 changes: 4 additions & 4 deletions lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ function issue(name, message = '') {
}
command$1.issue = issue;
const CMD_STRING = '::';
class Command$1 {
let Command$1 = class Command {
constructor(command, properties, message) {
if (!command) {
command = 'missing.command';
Expand Down Expand Up @@ -163,7 +163,7 @@ class Command$1 {
cmdStr += `${CMD_STRING}${escapeData(this.message)}`;
return cmdStr;
}
}
};
function escapeData(s) {
return utils_1$2.toCommandValue(s)
.replace(/%/g, '%25')
Expand Down Expand Up @@ -2619,7 +2619,7 @@ Object.defineProperty(context, "__esModule", { value: true });
var Context_1 = context.Context = void 0;
const fs_1 = fs$1;
const os_1 = require$$0;
class Context$1 {
let Context$1 = class Context {
/**
* Hydrate the context from the environment
*/
Expand Down Expand Up @@ -2665,7 +2665,7 @@ class Context$1 {
}
throw new Error("context.repo requires a GITHUB_REPOSITORY environment variable like 'owner/repo'");
}
}
};
Context_1 = context.Context = Context$1;

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

0 comments on commit 5ce4832

Please sign in to comment.