mirror of
https://github.com/goreleaser/goreleaser-action
synced 2026-09-02 22:18:34 +00:00
feat: support downloading goreleaser pro (#284)
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
export const suffix = (distribution: string): string => {
|
||||
return isPro(distribution) ? '-pro' : '';
|
||||
};
|
||||
|
||||
export const isPro = (distribution: string): boolean => {
|
||||
return distribution === 'goreleaser-pro';
|
||||
};
|
||||
Reference in New Issue
Block a user