mirror of
https://github.com/lukaszraczylo/kportal.git
synced 2026-06-29 05:32:38 +00:00
Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 9fd8f9b03b | |||
| 7032bb5bee |
@@ -71,3 +71,21 @@ homebrew_casks:
|
|||||||
system_command "/usr/bin/xattr",
|
system_command "/usr/bin/xattr",
|
||||||
args: ["-dr", "com.apple.quarantine", "#{staged_path}/kportal"]
|
args: ["-dr", "com.apple.quarantine", "#{staged_path}/kportal"]
|
||||||
end
|
end
|
||||||
|
|
||||||
|
signs:
|
||||||
|
- cmd: cosign
|
||||||
|
env:
|
||||||
|
- COSIGN_PASSWORD={{ .Env.COSIGN_PASSWORD }}
|
||||||
|
certificate: "${artifact}.pem"
|
||||||
|
args:
|
||||||
|
- sign-blob
|
||||||
|
- "--key"
|
||||||
|
- "/tmp/cosign.key"
|
||||||
|
- "--output-signature"
|
||||||
|
- "${signature}"
|
||||||
|
- "--output-certificate"
|
||||||
|
- "${certificate}"
|
||||||
|
- "${artifact}"
|
||||||
|
- "--yes"
|
||||||
|
artifacts: checksum
|
||||||
|
output: true
|
||||||
|
|||||||
@@ -83,6 +83,19 @@ cd kportal
|
|||||||
make build && make install
|
make build && make install
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### Verifying Release Signatures
|
||||||
|
|
||||||
|
All release checksums are signed with [cosign](https://github.com/sigstore/cosign). To verify:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# Download the checksum file and its signature
|
||||||
|
# Then verify with:
|
||||||
|
cosign verify-blob \
|
||||||
|
--key https://raw.githubusercontent.com/lukaszraczylo/lukaszraczylo/main/cosign.pub \
|
||||||
|
--signature kportal-<version>-checksums.txt.sig \
|
||||||
|
kportal-<version>-checksums.txt
|
||||||
|
```
|
||||||
|
|
||||||
## 🚀 Quick Start
|
## 🚀 Quick Start
|
||||||
|
|
||||||
Create `.kportal.yaml`:
|
Create `.kportal.yaml`:
|
||||||
|
|||||||
Reference in New Issue
Block a user