Skip to content

Commit

Permalink
feat: mkcert add missing parts
Browse files Browse the repository at this point in the history
Signed-off-by: Dominik Tomasi <[email protected]>
  • Loading branch information
dtomasi committed Feb 6, 2024
1 parent 0123de5 commit ae1e289
Showing 1 changed file with 17 additions and 12 deletions.
29 changes: 17 additions & 12 deletions mkcert.hcl
Original file line number Diff line number Diff line change
@@ -1,23 +1,28 @@
binaries = []

platform "darwin" "amd64" {
source = "https://github.com/FiloSottile/mkcert/releases/download/v${version}/mkcert-v${version}-${os}-${arch}"
}
binaries = ["mkcert"]
description = "A simple zero-config tool to make locally trusted development certificates with any names you'd like."
homepage = "https://mkcert.dev"
test = "mkcert --version"
source = "https://github.com/FiloSottile/mkcert/releases/download/v${version}/mkcert-v${version}-${os}-${arch}"

platform "darwin" "arm64" {
source = "https://github.com/FiloSottile/mkcert/releases/download/v${version}/mkcert-v${version}-${os}-${arch}"
on "unpack" {
rename {
from = "${root}/mkcert-v${version}-${os}-${arch}"
to = "${root}/mkcert"
}
}

platform "linux" "amd64" {
source = "https://github.com/FiloSottile/mkcert/releases/download/v${version}/mkcert-v${version}-${os}-${arch}"
platform "linux" "arm64" {
source = "https://github.com/FiloSottile/mkcert/releases/download/v${version}/mkcert-v${version}-${os}-arm64"
}

description = "A simple zero-config tool to make locally trusted development certificates with any names you'd like."
homepage = "https://mkcert.dev"

version "1.4.4" {
auto-version {
github-release = "FiloSottile/mkcert"
}
}

sha256sums = {
"https://github.com/FiloSottile/mkcert/releases/download/v1.4.4/mkcert-v1.4.4-darwin-amd64": "a32dfab51f1845d51e810db8e47dcf0e6b51ae3422426514bf5a2b8302e97d4e",
"https://github.com/FiloSottile/mkcert/releases/download/v1.4.4/mkcert-v1.4.4-darwin-arm64": "c8af0df44bce04359794dad8ea28d750437411d632748049d08644ffb66a60c6",
"https://github.com/FiloSottile/mkcert/releases/download/v1.4.4/mkcert-v1.4.4-linux-amd64": "6d31c65b03972c6dc4a14ab429f2928300518b26503f58723e532d1b0a3bbb52",
}

0 comments on commit ae1e289

Please sign in to comment.