Skip to content

Commit a924760

Browse files
committed
Fix release action
1 parent d0aec88 commit a924760

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
- name: Ensure new version
3838
run: |
3939
latest_tag=$(curl --silent -H "Accept: application/vnd.github.v3+json" https://api.github.com/repos/gitpod-io/gitpod-vscode-desktop/releases/latest | jq --raw-output '.tag_name')
40-
if [ "$latest_tag" = *${{ steps.package_vsix.outputs.version }} ]; then
40+
if [ "$latest_tag" = "v${{ steps.package_vsix.outputs.version }}" ]; then
4141
exit 1
4242
fi
4343

0 commit comments

Comments
 (0)