diff --git a/dist/index.js b/dist/index.js index bdbe3c55..40ec9f16 100644 --- a/dist/index.js +++ b/dist/index.js @@ -9590,6 +9590,7 @@ function createRelease(version, exportResults) { tag_name: versionStr, repo: (_d = (_c = process.env['GITHUB_REPOSITORY']) === null || _c === void 0 ? void 0 : _c.split('/')[1], (_d !== null && _d !== void 0 ? _d : '')), name: versionStr, + target_commitish: process.env['GITHUB_SHA'], }); const promises = []; for (const exportResult of exportResults) { diff --git a/lib/godot.js b/lib/godot.js index 29a3c8fa..a42ccd2a 100644 --- a/lib/godot.js +++ b/lib/godot.js @@ -127,6 +127,7 @@ function createRelease(version, exportResults) { tag_name: versionStr, repo: (_d = (_c = process.env['GITHUB_REPOSITORY']) === null || _c === void 0 ? void 0 : _c.split('/')[1], (_d !== null && _d !== void 0 ? _d : '')), name: versionStr, + target_commitish: process.env['GITHUB_SHA'], }); const promises = []; for (const exportResult of exportResults) { diff --git a/node_modules/@zeit/ncc/dist/ncc/cli.js.cache b/node_modules/@zeit/ncc/dist/ncc/cli.js.cache index ff6819e8..f66d6d4f 100644 Binary files a/node_modules/@zeit/ncc/dist/ncc/cli.js.cache and b/node_modules/@zeit/ncc/dist/ncc/cli.js.cache differ diff --git a/node_modules/@zeit/ncc/dist/ncc/index.js.cache b/node_modules/@zeit/ncc/dist/ncc/index.js.cache index 020d11ef..8138d929 100644 Binary files a/node_modules/@zeit/ncc/dist/ncc/index.js.cache and b/node_modules/@zeit/ncc/dist/ncc/index.js.cache differ diff --git a/node_modules/@zeit/ncc/dist/ncc/loaders/relocate-loader.js.cache b/node_modules/@zeit/ncc/dist/ncc/loaders/relocate-loader.js.cache index 3ca66ff7..5aec7104 100644 Binary files a/node_modules/@zeit/ncc/dist/ncc/loaders/relocate-loader.js.cache and b/node_modules/@zeit/ncc/dist/ncc/loaders/relocate-loader.js.cache differ diff --git a/node_modules/@zeit/ncc/dist/ncc/loaders/shebang-loader.js.cache b/node_modules/@zeit/ncc/dist/ncc/loaders/shebang-loader.js.cache index 5bfc982f..2c20d8ee 100644 Binary files a/node_modules/@zeit/ncc/dist/ncc/loaders/shebang-loader.js.cache and b/node_modules/@zeit/ncc/dist/ncc/loaders/shebang-loader.js.cache differ diff --git a/src/godot.ts b/src/godot.ts index 2050bf8d..ef4e9958 100644 --- a/src/godot.ts +++ b/src/godot.ts @@ -107,6 +107,7 @@ async function createRelease(version: SemVer, exportResults: ExportResult[]): Pr tag_name: versionStr, repo: process.env['GITHUB_REPOSITORY']?.split('/')[1] ?? '', name: versionStr, + target_commitish: process.env['GITHUB_SHA'], }); const promises: Promise[] = [];