Skip to content
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
11 changes: 9 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,7 @@ jobs:
if: startsWith(github.ref, 'refs/tags/v')
permissions:
contents: write
id-token: write # required for keyless cosign signing via OIDC
steps:
- name: Checkout code
uses: actions/checkout@v4
Expand All @@ -209,8 +210,14 @@ jobs:
pattern: step-ca_*
merge-multiple: true

- name: List artifacts
run: ls -la dist/
- name: Install cosign
uses: sigstore/cosign-installer@v3

- name: Sign binaries
run: |
for bin in dist/step-ca_*; do
cosign sign-blob --yes --bundle="${bin}.bundle" "$bin"
done

- name: Get version
id: version
Expand Down
2 changes: 2 additions & 0 deletions docs/content/user.md
Original file line number Diff line number Diff line change
Expand Up @@ -621,6 +621,8 @@ kind: Gateway
metadata:
name: my-gateway
namespace: infra
annotations:
cert-manager.io/cluster-issuer: acme-proxy
spec:
gatewayClassName: nginx
listeners:
Expand Down
Loading