Skip to content

Commit

Permalink
馃摝 updates HDK for v0.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
k33g committed May 6, 2023
1 parent 41c52b7 commit e35d81d
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 0 deletions.
19 changes: 19 additions & 0 deletions Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,22 @@ tasks:
cmds:
- git tag -d ${TAG}

build-releases:
env:
TAG: "v0.3.4"
cmds:
- |
cd capsule-cli
env GOOS=darwin GOARCH=arm64 go build -o capsule-${TAG}-darwin-arm64
env GOOS=darwin GOARCH=amd64 go build -o capsule-${TAG}-darwin-amd64
env GOOS=linux GOARCH=arm64 go build -o capsule-${TAG}-linux-arm64
env GOOS=linux GOARCH=amd64 go build -o capsule-${TAG}-linux-amd64
mv capsule-${TAG}-* ../release
- |
cd capsule-http
env GOOS=darwin GOARCH=arm64 go build -o capsule-http-${TAG}-darwin-arm64
env GOOS=darwin GOARCH=amd64 go build -o capsule-http-${TAG}-darwin-amd64
env GOOS=linux GOARCH=arm64 go build -o capsule-http-${TAG}-linux-arm64
env GOOS=linux GOARCH=amd64 go build -o capsule-http-${TAG}-linux-amd64
mv capsule-http-${TAG}-* ../release
1 change: 1 addition & 0 deletions capsule-cli/.gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
capsule
capsule-v*
1 change: 1 addition & 0 deletions release/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
capsule-*
Empty file added release/.gitkeep
Empty file.

0 comments on commit e35d81d

Please sign in to comment.