Merge branch 'main' into v-dmshib/add-support-for-nightly-and-rc

This commit is contained in:
Dmitry Shibanov 2022-11-09 13:13:50 +01:00
commit 7df7057afa
5 changed files with 21 additions and 6 deletions

View file

@ -33,7 +33,7 @@ export async function run() {
if (version) {
const token = core.getInput('token');
const auth = !token || isGhes() ? undefined : `token ${token}`;
const auth = !token ? undefined : `token ${token}`;
const stable =
(core.getInput('stable') || 'true').toUpperCase() === 'TRUE';
const checkLatest =