From 814a5d0a60e01250372426c9aa37964c77021b0b Mon Sep 17 00:00:00 2001 From: Andrew Gable Date: Fri, 8 Nov 2024 15:33:56 -0700 Subject: [PATCH] Rebuild actions --- .../actions/javascript/checkAndroidStatus/index.js | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/actions/javascript/checkAndroidStatus/index.js b/.github/actions/javascript/checkAndroidStatus/index.js index 883608004521..dcaf3611870a 100644 --- a/.github/actions/javascript/checkAndroidStatus/index.js +++ b/.github/actions/javascript/checkAndroidStatus/index.js @@ -736541,10 +736541,9 @@ Object.defineProperty(exports, "__esModule", ({ value: true })); const googleapis_1 = __nccwpck_require__(44913); const GithubUtils_1 = __importDefault(__nccwpck_require__(19296)); const core = __importStar(__nccwpck_require__(42186)); -const PACKAGE_NAME = process.env.PACKAGE_NAME; -const GOOGLE_KEY_FILE = process.env.GOOGLE_KEY_FILE; -const REPO_OWNER = process.env.REPO_OWNER || ''; -const REPO_NAME = process.env.REPO_NAME || ''; +const CONST_1 = __importDefault(__nccwpck_require__(29873)); +const PACKAGE_NAME = core.getInput('PACKAGE_NAME', { required: true }); +const GOOGLE_KEY_FILE = core.getInput('GOOGLE_KEY_FILE', { required: true }); const HALTED_STATUS = 'halted'; async function checkAndroidStatus() { const auth = new googleapis_1.google.auth.GoogleAuth({ @@ -736580,8 +736579,8 @@ async function checkAndroidStatus() { } async function getLatestReleaseDate() { const { data } = await GithubUtils_1.default.octokit.repos.getLatestRelease({ - owner: REPO_OWNER, - repo: REPO_NAME, + owner: CONST_1.default.GITHUB_OWNER, + repo: CONST_1.default.APP_REPO, }); const releaseDate = data.published_at?.split('T')[0]; if (!releaseDate) {