diff options
author | Mo Balaa <thebalaa@users.noreply.github.com> | 2023-07-26 11:16:12 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-26 16:16:12 +0000 |
commit | 96529c42368a6153a92330c3f03be5b02ce4653c (patch) | |
tree | 844100d66ed68a5e10aff9d25f36cc930f9fff38 /.github | |
parent | Merge branch 'release-v1.89' into develop (diff) | |
download | synapse-96529c42368a6153a92330c3f03be5b02ce4653c.tar.xz |
Add synapse version as Docker container label (#15972)
Co-authored-by: Mo Balaa <balaa@fractalnetworks.co>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/docker.yml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 602f5e1759..cf98a6a86f 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -28,6 +28,10 @@ jobs: - name: Inspect builder run: docker buildx inspect + + - name: Extract version from pyproject.toml + run: | + echo "SYNAPSE_VERSION=$(grep "^version" pyproject.toml | sed -E 's/version\s*=\s*["]([^"]*)["]/\1/')" >> $GITHUB_ENV - name: Log in to DockerHub uses: docker/login-action@v2 @@ -61,7 +65,9 @@ jobs: uses: docker/build-push-action@v4 with: push: true - labels: "gitsha1=${{ github.sha }}" + labels: | + gitsha1=${{ github.sha }} + org.opencontainers.image.version=${{ env.SYNAPSE_VERSION }} tags: "${{ steps.set-tag.outputs.tags }}" file: "docker/Dockerfile" platforms: linux/amd64,linux/arm64 |