Skip to content

Commit

Permalink
Merge pull request #1 from FHIR/dev
Browse files Browse the repository at this point in the history
  • Loading branch information
GinoCanessa authored Jul 18, 2024
2 parents e18ade4 + 6716921 commit 638d916
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/ghcr-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,14 @@ jobs:

- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@9ec57ed1fcdbf14dcef7dfbe97b2010124a938b7
uses: docker/metadata-action@v5
with:
labels: |
org.opencontainers.image.title=fhir-candle
org.opencontainers.image.description=A small in-memory FHIR server that can be used for testing and development - NOT for production workloads.
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: |
type=raw,value=latest,enable={{is_default_branch}}
- name: Build and push Docker image
id: push
Expand Down
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# fhir-candle
[![Tests](https://github.com/FHIR/fhir-candle/actions/workflows/build-and-test.yml/badge.svg)](https://github.com/FHIR/fhir-candle/actions/workflows/build-and-test.yml)
[![Publish dotnet tool](https://img.shields.io/nuget/v/fhir-candle.svg)](https://github.com/FHIR/fhir-candle/actions/workflows/nuget-tool.yml)
[![Publish Docker image on GitHub CR](https://github.com/FHIR/fhir-candle/actions/workflows/ghcr-docker.yml/badge.svg)](https://github.com/FHIR/fhir-candle/actions/workflows/ghcr-docker.yml)
[![Deploy to subscriptions.argo.run](https://github.com/FHIR/fhir-candle/actions/workflows/argo-subscriptions.yml/badge.svg)](https://github.com/FHIR/fhir-candle/actions/workflows/argo-subscriptions.yml)

When you need a small FHIR.
Expand Down Expand Up @@ -81,15 +82,15 @@ dotnet build src/fhir-candle/fhir-candle.csproj -c Release
The output of the release build can be run (from the root directory of the repo)
* on all platforms:
```
dotnet ./src/fhir-candle/bin/Release/net7.0/fhir-candle.dll
dotnet ./src/fhir-candle/bin/Release/net8.0/fhir-candle.dll
```
* if you built on Windows:
```
.\src\fhir-candle\bin\Release\net7.0\fhir-candle.exe
.\src\fhir-candle\bin\Release\net8.0\fhir-candle.exe
```
* if you built on Linux or MacOs:
```
./src/fhir-candle/bin/Release/net7.0/fhir-candle
./src/fhir-candle/bin/Release/net8.0/fhir-candle
```

### FHIR Tenants
Expand Down

0 comments on commit 638d916

Please sign in to comment.