Skip to content

Commit

Permalink
Rebuild actions
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewGable committed Nov 8, 2024
1 parent f7d951f commit 814a5d0
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions .github/actions/javascript/checkAndroidStatus/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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({
Expand Down Expand Up @@ -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) {
Expand Down

0 comments on commit 814a5d0

Please sign in to comment.