Skip to content

Commit

Permalink
fix: fixed CI release by reverting back to release.types=created
Browse files Browse the repository at this point in the history
  • Loading branch information
chgl authored Apr 6, 2022
1 parent 67422d1 commit 0aebfc1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ name: ci
on:
push:
branches: [master]
tags:
- "v*"
release:
types: [created]
pull_request:
branches: [master]

Expand Down
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ docker run --rm -it \
-p 9797:9797 \
-e FHIRSERVERURL="https://hapi.fhir.org/baseR4" \
-e FETCHINTERVALSECONDS=60 \
quay.io/chgl/fhir-server-exporter:latest
ghcr.io/chgl/fhir-server-exporter:latest
```

Open <http://localhost:9797/metrics> to view the resource counts in Prometheus format:
Expand Down Expand Up @@ -124,9 +124,8 @@ docker run -e FHIRSERVERURL="http://host.docker.internal:8082/fhir" -p 9797:9797

## Verify image integrity

All released container images are signed using [cosign](https://github.com/sigstore/cosign).
The public key hosted at <https://chgl.github.io/cosign.pub> (see [here](https://github.com/chgl/chgl.github.io) for the repository source) may be used to verify them:
All released container images are signed using [cosign](https://github.com/sigstore/cosign) following the [keyless approach](https://github.com/sigstore/cosign/blob/main/KEYLESS.md). To verify the signature:

```sh
cosign verify -key https://chgl.github.io/cosign.pub ghcr.io/chgl/fhir-server-exporter:latest
COSIGN_EXPERIMENTAL=1 cosign verify ghcr.io/chgl/fhir-server-exporter:latest
```

0 comments on commit 0aebfc1

Please sign in to comment.