hookdeck-cli 0.6.4 → 0.6.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -69,9 +69,28 @@ jobs:
69
69
  env:
70
70
  GITHUB_TOKEN: ${{ secrets.GORELEASER_GITHUB_TOKEN }}
71
71
 
72
+ build-windows-npm:
73
+ runs-on: windows-latest
74
+ steps:
75
+ - name: Code checkout
76
+ uses: actions/checkout@v2
77
+ with:
78
+ fetch-depth: 0
79
+ - name: Set up Go
80
+ uses: actions/setup-go@v2
81
+ with:
82
+ go-version: 1.16
83
+ - name: Run GoReleaser
84
+ uses: goreleaser/goreleaser-action@v2
85
+ with:
86
+ version: v0.157.0
87
+ args: release -f .goreleaser/windows-npm.yml --rm-dist
88
+ env:
89
+ GITHUB_TOKEN: ${{ secrets.GORELEASER_GITHUB_TOKEN }}
90
+
72
91
  publish-npm:
73
92
  runs-on: ubuntu-latest
74
- needs: [build-windows, build-linux, build-mac]
93
+ needs: [build-windows-npm, build-linux, build-mac]
75
94
  steps:
76
95
  - uses: actions/checkout@v3
77
96
  - uses: actions/setup-node@v3
@@ -17,6 +17,17 @@ builds:
17
17
  - linux
18
18
  goarch:
19
19
  - amd64
20
+ - id: hookdeck-linux-arm64
21
+ ldflags:
22
+ - -s -w -X github.com/hookdeck/hookdeck-cli/pkg/version.Version={{.Version}}
23
+ binary: hookdeck
24
+ env:
25
+ - CGO_ENABLED=0
26
+ main: ./main.go
27
+ goos:
28
+ - linux
29
+ goarch:
30
+ - arm64
20
31
  - id: hookdeck-linux-arm
21
32
  ldflags:
22
33
  - -s -w -X github.com/hookdeck/hookdeck-cli/pkg/version.Version={{.Version}}
@@ -0,0 +1,46 @@
1
+ env:
2
+ - GO111MODULE=on
3
+ before:
4
+ hooks:
5
+ - go mod download
6
+ - go generate ./...
7
+ project_name: hookdeck
8
+ builds:
9
+ - id: hookdeck-windows
10
+ ldflags:
11
+ - -s -w -X github.com/hookdeck/hookdeck-cli/pkg/version.Version={{.Version}}
12
+ binary: hookdeck
13
+ env:
14
+ - CGO_ENABLED=1
15
+ - CC=x86_64-w64-mingw32-gcc
16
+ - CXX=x86_64-w64-mingw32-g++
17
+ main: ./main.go
18
+ goos:
19
+ - windows
20
+ goarch:
21
+ - amd64
22
+ - 386
23
+ archives:
24
+ - replacements:
25
+ files:
26
+ - none*
27
+ changelog:
28
+ sort: asc
29
+ filters:
30
+ exclude:
31
+ - "^docs:"
32
+ - "^test:"
33
+ checksum:
34
+ name_template: "{{ .ProjectName }}-windows-checksums-npm.txt"
35
+ snapshot:
36
+ name_template: "{{ .Tag }}-next"
37
+ scoop:
38
+ bucket:
39
+ owner: hookdeck
40
+ name: scoop-hookdeck
41
+ commit_author:
42
+ name: hookdeck-ci
43
+ email: support@hookdeck.com
44
+ homepage: https://hookdeck.com
45
+ description: Hookdeck CLI utility
46
+ license: Apache 2.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hookdeck-cli",
3
- "version": "0.6.4",
3
+ "version": "0.6.5",
4
4
  "description": "Hookdeck CLI",
5
5
  "repository": {
6
6
  "type": "git",