Skip to content

Commit 5b14a7b

Browse files
committed
Add goreleaser post hook (upx)
1 parent ecb5091 commit 5b14a7b

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.goreleaser.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@ builds:
2525
- CGO_ENABLED=0
2626
ldflags:
2727
- -s -w
28+
hooks:
29+
post:
30+
- upx --brute "{{ .Path }}"
2831

2932
# .goreleaser.yml
3033
brews:
@@ -65,6 +68,7 @@ brews:
6568

6669
# Packages your package depends on.
6770
dependencies:
71+
- name: npm
6872
- name: git
6973
- name: go
7074

pkg/registry/defaults.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
)
1212

1313
// CLIVersion version of Create Go App CLI.
14-
const CLIVersion string = "3.3.2"
14+
const CLIVersion string = "3.4.0"
1515

1616
// Variables struct for Ansible variables (inventory, hosts).
1717
type Variables struct {

0 commit comments

Comments
 (0)