mirror of
https://github.com/peaceiris/actions-hugo.git
synced 2026-09-21 17:46:36 +00:00
fix: handle Hugo 0.139.5 archive fallback (#696)
Co-authored-by: Codex <noreply@openai.com>
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
import getURL from '../src/get-url';
|
import getURL, {getDownloadVersion} from '../src/get-url';
|
||||||
|
|
||||||
describe('getURL()', () => {
|
describe('getURL()', () => {
|
||||||
test('get URLs to Linux assets', () => {
|
test('get URLs to Linux assets', () => {
|
||||||
@@ -139,6 +139,19 @@ describe('getURL()', () => {
|
|||||||
]);
|
]);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
test('get URLs to Hugo 0.139.5 archive alias', () => {
|
||||||
|
const baseURL = 'https://github.com/gohugoio/hugo/releases/download/v0.139.4';
|
||||||
|
expect(getDownloadVersion('0.139.5')).toBe('0.139.4');
|
||||||
|
expect(getURL('linux', 'amd64', 'true', '0.139.5')).toEqual([
|
||||||
|
`${baseURL}/hugo_extended_0.139.4_linux-amd64.tar.gz`,
|
||||||
|
`${baseURL}/hugo_extended_0.139.4_Linux-amd64.tar.gz`,
|
||||||
|
`${baseURL}/hugo_extended_0.139.4_Linux_amd64.tar.gz`,
|
||||||
|
`${baseURL}/hugo_extended_v0.139.4_linux-amd64.tar.gz`,
|
||||||
|
`${baseURL}/hugo_extended_v0.139.4_Linux-amd64.tar.gz`,
|
||||||
|
`${baseURL}/hugo_extended_v0.139.4_Linux_amd64.tar.gz`
|
||||||
|
]);
|
||||||
|
});
|
||||||
|
|
||||||
test('get a fallback URL to an unknown OS asset', () => {
|
test('get a fallback URL to an unknown OS asset', () => {
|
||||||
const baseURL = 'https://github.com/gohugoio/hugo/releases/download/v0.58.2';
|
const baseURL = 'https://github.com/gohugoio/hugo/releases/download/v0.58.2';
|
||||||
expect(getURL('MyOS', '64bit', 'false', '0.58.2')).toEqual([
|
expect(getURL('MyOS', '64bit', 'false', '0.58.2')).toEqual([
|
||||||
|
|||||||
+14
-3
@@ -4,6 +4,8 @@ export default function getURL(
|
|||||||
extended: string,
|
extended: string,
|
||||||
version: string
|
version: string
|
||||||
): string[] {
|
): string[] {
|
||||||
|
const downloadVersion = getDownloadVersion(version);
|
||||||
|
|
||||||
const extendedStr = (extended: string): string => {
|
const extendedStr = (extended: string): string => {
|
||||||
if (extended === 'true') {
|
if (extended === 'true') {
|
||||||
return 'extended_';
|
return 'extended_';
|
||||||
@@ -28,12 +30,12 @@ export default function getURL(
|
|||||||
};
|
};
|
||||||
|
|
||||||
const baseURL = 'https://github.com/gohugoio/hugo/releases/download';
|
const baseURL = 'https://github.com/gohugoio/hugo/releases/download';
|
||||||
const assetBase = `hugo_${extendedStr(extended)}${version}_`;
|
const assetBase = `hugo_${extendedStr(extended)}${downloadVersion}_`;
|
||||||
const legacyVersionedAssetBase = `hugo_${extendedStr(extended)}v${version}_`;
|
const legacyVersionedAssetBase = `hugo_${extendedStr(extended)}v${downloadVersion}_`;
|
||||||
const assetBases = [assetBase, legacyVersionedAssetBase];
|
const assetBases = [assetBase, legacyVersionedAssetBase];
|
||||||
const assetURLs = (assetNames: string[]): string[] => {
|
const assetURLs = (assetNames: string[]): string[] => {
|
||||||
return Array.from(new Set(assetNames)).map(assetName => {
|
return Array.from(new Set(assetNames)).map(assetName => {
|
||||||
return `${baseURL}/v${version}/${assetName}`;
|
return `${baseURL}/v${downloadVersion}/${assetName}`;
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -82,3 +84,12 @@ export default function getURL(
|
|||||||
|
|
||||||
return assetURLs([`${assetBase}${os}-${arch}.tar.gz`]);
|
return assetURLs([`${assetBase}${os}-${arch}.tar.gz`]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export function getDownloadVersion(version: string): string {
|
||||||
|
if (version === '0.139.5') {
|
||||||
|
// v0.139.5 has no release archives; Hugo publishes the same archives under v0.139.4.
|
||||||
|
return '0.139.4';
|
||||||
|
}
|
||||||
|
|
||||||
|
return version;
|
||||||
|
}
|
||||||
|
|||||||
+7
-1
@@ -5,7 +5,7 @@ import * as exec from '@actions/exec';
|
|||||||
import {getConventions} from './get-conventions';
|
import {getConventions} from './get-conventions';
|
||||||
import getOS from './get-os';
|
import getOS from './get-os';
|
||||||
import getArch from './get-arch';
|
import getArch from './get-arch';
|
||||||
import getURL from './get-url';
|
import getURL, {getDownloadVersion} from './get-url';
|
||||||
import * as path from 'path';
|
import * as path from 'path';
|
||||||
import {Tool, Action} from './constants';
|
import {Tool, Action} from './constants';
|
||||||
|
|
||||||
@@ -123,6 +123,12 @@ export async function installer(version: string): Promise<void> {
|
|||||||
core.debug(`Processor Architecture: ${archName}`);
|
core.debug(`Processor Architecture: ${archName}`);
|
||||||
|
|
||||||
const toolURLs: string[] = getURL(osName, archName, extended, version);
|
const toolURLs: string[] = getURL(osName, archName, extended, version);
|
||||||
|
const downloadVersion = getDownloadVersion(version);
|
||||||
|
if (downloadVersion !== version) {
|
||||||
|
core.info(
|
||||||
|
`Hugo ${version} release does not publish archives; downloading v${downloadVersion} archives instead.`
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
const workDir = await createWorkDir();
|
const workDir = await createWorkDir();
|
||||||
const binDir = await createBinDir(workDir);
|
const binDir = await createBinDir(workDir);
|
||||||
|
|||||||
Reference in New Issue
Block a user