From 8c8a5e28a0f42771a94f559c2e04f81cd7e4d68b Mon Sep 17 00:00:00 2001 From: Andrew Ferrazzutti Date: Fri, 11 Apr 2025 08:45:55 -0400 Subject: [PATCH] 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. --- .github/workflows/publish.yaml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 8037ab2e..8735f05d 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -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 }} ```