Fix Docker image tag in release notes (#3190)

The version tag of published Docker images includes a leading "v", so
include it in release notes.
This commit is contained in:
Andrew Ferrazzutti
2025-04-11 08:45:55 -04:00
committed by GitHub
parent d0c76139a8
commit 8c8a5e28a0

View File

@@ -66,8 +66,6 @@ jobs:
name: Add docker release note
runs-on: ubuntu-latest
steps:
- name: Get artifact version
run: echo "ARTIFACT_VERSION=${VERSION:1}" >> "$GITHUB_ENV"
- name: Add release note
uses: softprops/action-gh-release@c95fe1489396fe8a9eb87c0abf8aa5b2ef267fda # v2
with:
@@ -79,5 +77,5 @@ jobs:
The image provides a full build of Element Call that can be used both in standalone and as a widget (on a remote URL).
```
docker pull ghcr.io/element-hq/element-call:${{ env.ARTIFACT_VERSION }}
docker pull ghcr.io/element-hq/element-call:${{ env.VERSION }}
```