Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v1.1.1 #58

Merged
merged 1 commit into from
Mar 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ define go-build
# $(if $(filter package,$(TARGET)),$(BUILDER) save $(REGISTRY)/$(NAME):$(VERSION) -o [email protected],)
# Ignore errors from the docker rm; this is just to ensure no such container exists before we create it.
docker rm -f $(2) 2> /dev/null
docker create --name=$(2) local/$(2)
docker create --name=$(2) local/$(2):$(VERSION)
docker export $(2) -o $(OUT_DIR)/$(2).tar
tar xf $(OUT_DIR)/$(2).tar -C $(OUT_DIR) app
rm $(OUT_DIR)/$(2).tar
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ all the time.

| Version | OS | Architecture | Download |
|---------|-------|--------------|-----------------------------------------------------------------------------------------------|
| v1.1.0 | Linux | x86_64 | [turnkey.linux-x86_64](https://github.com/tkhq/tkcli/raw/v1.1.0/dist/turnkey.linux-x86_64) |
| v1.1.0 | Linux | aarch64 | [turnkey.linux-aarch64](https://github.com/tkhq/tkcli/raw/v1.1.0/dist/turnkey.linux-aarch64) |
| v1.1.0 | MacOS | x86_64 | [turnkey.darwin-x86_64](https://github.com/tkhq/tkcli/raw/v1.1.0/dist/turnkey.darwin-x86_64) |
| v1.1.0 | MacOS | aarch64 | [turnkey.darwin-aarch64](https://github.com/tkhq/tkcli/raw/v1.1.0/dist/turnkey.darwin-aarch64)|
| v1.1.1 | Linux | x86_64 | [turnkey.linux-x86_64](https://github.com/tkhq/tkcli/raw/v1.1.1/dist/turnkey.linux-x86_64) |
| v1.1.1 | Linux | aarch64 | [turnkey.linux-aarch64](https://github.com/tkhq/tkcli/raw/v1.1.1/dist/turnkey.linux-aarch64) |
| v1.1.1 | MacOS | x86_64 | [turnkey.darwin-x86_64](https://github.com/tkhq/tkcli/raw/v1.1.1/dist/turnkey.darwin-x86_64) |
| v1.1.1 | MacOS | aarch64 | [turnkey.darwin-aarch64](https://github.com/tkhq/tkcli/raw/v1.1.1/dist/turnkey.darwin-aarch64)|
| v1.0.5 | Linux | x86_64 | [turnkey.linux-x86_64](https://github.com/tkhq/tkcli/raw/v1.0.5/dist/turnkey.linux-x86_64) |
| v1.0.5 | Linux | aarch64 | [turnkey.linux-aarch64](https://github.com/tkhq/tkcli/raw/v1.0.5/dist/turnkey.linux-aarch64) |
| v1.0.5 | MacOS | x86_64 | [turnkey.darwin-x86_64](https://github.com/tkhq/tkcli/raw/v1.0.5/dist/turnkey.darwin-x86_64) |
Expand Down
8 changes: 4 additions & 4 deletions digests-dist.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
b3c53d7a2ce8a99cd5cfc39f4f17fd7520c85ede6d311e14c850878d341bb666 turnkey.darwin-aarch64
b3c53d7a2ce8a99cd5cfc39f4f17fd7520c85ede6d311e14c850878d341bb666 turnkey.darwin-x86_64
b3c53d7a2ce8a99cd5cfc39f4f17fd7520c85ede6d311e14c850878d341bb666 turnkey.linux-aarch64
b3c53d7a2ce8a99cd5cfc39f4f17fd7520c85ede6d311e14c850878d341bb666 turnkey.linux-x86_64
e57e8abdaf069d8fc7574472140cf593d8a5ab20fe7e8cab2966daff2d1a54d7 turnkey.darwin-aarch64
bc644a9f0123a425982ff2e790b46151a9f2c5a0523e82d8a7d5ce26c547596b turnkey.darwin-x86_64
7669faa0c6131473400d00caa2de437af006a3bb2b9209632f3e25c1c91eec43 turnkey.linux-aarch64
2dea24266d96015806ce4a3d43d68d710d2ee6cc122b98c96e50134270b564ec turnkey.linux-x86_64
10 changes: 5 additions & 5 deletions dist/Formula/turnkey.rb
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
class Turnkey < Formula
desc "Turnkey CLI"
homepage "https://github.com/tkhq/tkcli"
version "v1.1.0"
version "v1.1.1"
license "Apache License 2.0"

if Hardware::CPU.arm?
url "https://github.com/tkhq/tkcli/raw/v1.1.0/dist/turnkey.darwin-aarch64", using: CurlDownloadStrategy
sha256 "b3c53d7a2ce8a99cd5cfc39f4f17fd7520c85ede6d311e14c850878d341bb666"
url "https://github.com/tkhq/tkcli/raw/v1.1.1/dist/turnkey.darwin-aarch64", using: CurlDownloadStrategy
sha256 "e57e8abdaf069d8fc7574472140cf593d8a5ab20fe7e8cab2966daff2d1a54d7"

def install
bin.install "turnkey.darwin-aarch64" => "turnkey"
end
end
if Hardware::CPU.intel?
url "https://github.com/tkhq/tkcli/raw/v1.1.0/dist/turnkey.darwin-x86_64", using: CurlDownloadStrategy
sha256 "b3c53d7a2ce8a99cd5cfc39f4f17fd7520c85ede6d311e14c850878d341bb666"
url "https://github.com/tkhq/tkcli/raw/v1.1.1/dist/turnkey.darwin-x86_64", using: CurlDownloadStrategy
sha256 "bc644a9f0123a425982ff2e790b46151a9f2c5a0523e82d8a7d5ce26c547596b"

def install
bin.install "turnkey.darwin-x86_64" => "turnkey"
Expand Down
8 changes: 4 additions & 4 deletions dist/release.env
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
VERSION=v1.1.0
GIT_REF=c4237062d358bebc261d6adf35b3e1860b59bbe9
VERSION=v1.1.1
GIT_REF=5b408818c97337ae7affe6fdec136e4853e52cef
GIT_AUTHOR=Olivia Thet
GIT_KEY=7A43DD19DE99387A67502916910075EA4DFEFAFF
GIT_TIMESTAMP=2024-03-13 21:43:50 -0400
GIT_KEY=
GIT_TIMESTAMP=2024-03-13 22:00:27 -0400
4 changes: 2 additions & 2 deletions dist/turnkey.darwin-aarch64
Git LFS file not shown
4 changes: 2 additions & 2 deletions dist/turnkey.darwin-x86_64
Git LFS file not shown
4 changes: 2 additions & 2 deletions dist/turnkey.linux-aarch64
Git LFS file not shown
4 changes: 2 additions & 2 deletions dist/turnkey.linux-x86_64
Git LFS file not shown
Loading