mirror of
https://github.com/goreleaser/goreleaser-action
synced 2026-08-30 08:38:28 +00:00
8 lines
211 B
TypeScript
8 lines
211 B
TypeScript
export const suffix = (distribution: string): string => {
|
|
return isPro(distribution) ? '-pro' : '';
|
|
};
|
|
|
|
export const isPro = (distribution: string): boolean => {
|
|
return distribution === 'goreleaser-pro';
|
|
};
|