Skip to content

Commit 8c8a5e2

Browse files
authored
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.
1 parent d0c7613 commit 8c8a5e2

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

.github/workflows/publish.yaml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,6 @@ jobs:
6666
name: Add docker release note
6767
runs-on: ubuntu-latest
6868
steps:
69-
- name: Get artifact version
70-
run: echo "ARTIFACT_VERSION=${VERSION:1}" >> "$GITHUB_ENV"
7169
- name: Add release note
7270
uses: softprops/action-gh-release@c95fe1489396fe8a9eb87c0abf8aa5b2ef267fda # v2
7371
with:
@@ -79,5 +77,5 @@ jobs:
7977
The image provides a full build of Element Call that can be used both in standalone and as a widget (on a remote URL).
8078
8179
```
82-
docker pull ghcr.io/element-hq/element-call:${{ env.ARTIFACT_VERSION }}
80+
docker pull ghcr.io/element-hq/element-call:${{ env.VERSION }}
8381
```

0 commit comments

Comments
 (0)