mirror of
https://github.com/oven-sh/setup-bun.git
synced 2025-04-04 10:40:40 +08:00
chore: dont cache if customDownloadUrl
This commit is contained in:
parent
fe160cf381
commit
a11484a419
2
dist/index.js
vendored
2
dist/index.js
vendored
@ -23,7 +23,7 @@ const main = async () => {
|
|||||||
if ((release === null || release === void 0 ? void 0 : release.message) === 'Not Found')
|
if ((release === null || release === void 0 ? void 0 : release.message) === 'Not Found')
|
||||||
return exit('Invalid bun version.', miscTestBuilds);
|
return exit('Invalid bun version.', miscTestBuilds);
|
||||||
info(`Going to install release ${release.version}`);
|
info(`Going to install release ${release.version}`);
|
||||||
await install(release, token);
|
await install(release, token, customDownloadUrl === null);
|
||||||
setOutput('bun-version', release.tag_name);
|
setOutput('bun-version', release.tag_name);
|
||||||
}
|
}
|
||||||
catch (e) {
|
catch (e) {
|
||||||
|
10
dist/utils/install.js
vendored
10
dist/utils/install.js
vendored
@ -5,7 +5,7 @@ import getAsset from './getAsset.js';
|
|||||||
import { join } from 'path';
|
import { join } from 'path';
|
||||||
import { homedir } from 'os';
|
import { homedir } from 'os';
|
||||||
import { readdirSync } from 'fs';
|
import { readdirSync } from 'fs';
|
||||||
export default async (release, token) => {
|
export default async (release, token, customUrl) => {
|
||||||
const asset = getAsset(release.assets);
|
const asset = getAsset(release.assets);
|
||||||
const path = join(homedir(), '.bun', 'bin', asset.name);
|
const path = join(homedir(), '.bun', 'bin', asset.name);
|
||||||
const cache = find('bun', release.version) || await restoreCache([path], `bun-${process.platform}-${asset.name}-${release.version}`);
|
const cache = find('bun', release.version) || await restoreCache([path], `bun-${process.platform}-${asset.name}-${release.version}`);
|
||||||
@ -21,9 +21,11 @@ export default async (release, token) => {
|
|||||||
const extracted = await extractZip(zipPath, join(homedir(), '.bun', 'bin'));
|
const extracted = await extractZip(zipPath, join(homedir(), '.bun', 'bin'));
|
||||||
console.log(readdirSync(join(homedir(), '.bun', 'bin')));
|
console.log(readdirSync(join(homedir(), '.bun', 'bin')));
|
||||||
const newCache = await cacheDir(extracted, 'bun', release.version);
|
const newCache = await cacheDir(extracted, 'bun', release.version);
|
||||||
await saveCache([
|
if (!customUrl) {
|
||||||
join(extracted, asset.name)
|
await saveCache([
|
||||||
], `bun-${process.platform}-${asset.name}-${release.version}`);
|
join(extracted, asset.name)
|
||||||
|
], `bun-${process.platform}-${asset.name}-${release.version}`);
|
||||||
|
}
|
||||||
info(`Cached Bun to ${newCache}.`);
|
info(`Cached Bun to ${newCache}.`);
|
||||||
addPath(newCache);
|
addPath(newCache);
|
||||||
const bunPath = join(homedir(), '.bun', 'bin', asset.name);
|
const bunPath = join(homedir(), '.bun', 'bin', asset.name);
|
||||||
|
@ -26,7 +26,7 @@ const main = async() => {
|
|||||||
|
|
||||||
info(`Going to install release ${release.version}`);
|
info(`Going to install release ${release.version}`);
|
||||||
|
|
||||||
await install(release, token);
|
await install(release, token, customDownloadUrl === null);
|
||||||
|
|
||||||
setOutput('bun-version', release.tag_name);
|
setOutput('bun-version', release.tag_name);
|
||||||
} catch(e) {
|
} catch(e) {
|
||||||
|
@ -7,7 +7,7 @@ import { join } from 'path';
|
|||||||
import { homedir } from 'os';
|
import { homedir } from 'os';
|
||||||
import { readdirSync } from 'fs';
|
import { readdirSync } from 'fs';
|
||||||
|
|
||||||
export default async(release: Release, token: string) => {
|
export default async(release: Release, token: string, customUrl: boolean) => {
|
||||||
const asset = getAsset(release.assets);
|
const asset = getAsset(release.assets);
|
||||||
const path = join(homedir(), '.bun', 'bin', asset.name);
|
const path = join(homedir(), '.bun', 'bin', asset.name);
|
||||||
const cache = find('bun', release.version) || await restoreCache([path], `bun-${process.platform}-${asset.name}-${release.version}`);
|
const cache = find('bun', release.version) || await restoreCache([path], `bun-${process.platform}-${asset.name}-${release.version}`);
|
||||||
@ -34,9 +34,12 @@ export default async(release: Release, token: string) => {
|
|||||||
'bun',
|
'bun',
|
||||||
release.version
|
release.version
|
||||||
);
|
);
|
||||||
await saveCache([
|
|
||||||
join(extracted, asset.name)
|
if (!customUrl) {
|
||||||
], `bun-${process.platform}-${asset.name}-${release.version}`);
|
await saveCache([
|
||||||
|
join(extracted, asset.name)
|
||||||
|
], `bun-${process.platform}-${asset.name}-${release.version}`);
|
||||||
|
}
|
||||||
|
|
||||||
info(`Cached Bun to ${newCache}.`);
|
info(`Cached Bun to ${newCache}.`);
|
||||||
addPath(newCache);
|
addPath(newCache);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user