mirror of
https://github.com/goreleaser/goreleaser-action
synced 2026-07-09 21:37:30 +00:00
feat: warn about using 'latest'
This commit is contained in:
@@ -18,6 +18,16 @@ describe('install', () => {
|
|||||||
expect(fs.existsSync(bin)).toBe(true);
|
expect(fs.existsSync(bin)).toBe(true);
|
||||||
}, 100000);
|
}, 100000);
|
||||||
|
|
||||||
|
it('acquires latest v1 version of GoReleaser', async () => {
|
||||||
|
const bin = await goreleaser.install('goreleaser', '~> v1');
|
||||||
|
expect(fs.existsSync(bin)).toBe(true);
|
||||||
|
}, 100000);
|
||||||
|
|
||||||
|
it('acquires latest v1 version of GoReleaser Pro', async () => {
|
||||||
|
const bin = await goreleaser.install('goreleaser-pro', '~> v1');
|
||||||
|
expect(fs.existsSync(bin)).toBe(true);
|
||||||
|
}, 100000);
|
||||||
|
|
||||||
it('acquires latest version of GoReleaser Pro', async () => {
|
it('acquires latest version of GoReleaser Pro', async () => {
|
||||||
const bin = await goreleaser.install('goreleaser-pro', 'latest');
|
const bin = await goreleaser.install('goreleaser-pro', 'latest');
|
||||||
expect(fs.existsSync(bin)).toBe(true);
|
expect(fs.existsSync(bin)).toBe(true);
|
||||||
|
|||||||
+1
-1
File diff suppressed because one or more lines are too long
+1
-1
File diff suppressed because one or more lines are too long
@@ -9,6 +9,9 @@ export interface GitHubRelease {
|
|||||||
|
|
||||||
export const getRelease = async (distribution: string, version: string): Promise<GitHubRelease> => {
|
export const getRelease = async (distribution: string, version: string): Promise<GitHubRelease> => {
|
||||||
if (version === 'latest') {
|
if (version === 'latest') {
|
||||||
|
core.warning(
|
||||||
|
"You are using 'latest' as default version. This might include breaking changes. It is recommended to use a SemVer to lock to a major version (e.g. ~> v1)."
|
||||||
|
);
|
||||||
return getLatestRelease(distribution);
|
return getLatestRelease(distribution);
|
||||||
}
|
}
|
||||||
return getReleaseTag(distribution, version);
|
return getReleaseTag(distribution, version);
|
||||||
|
|||||||
Reference in New Issue
Block a user