Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ide-integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
fi

{
echo "version=$(gh run view "$RUNID" --log -R gitpod-io/gitpod | grep 'main-gha.[0-9]*' -o | head -n 1)"
echo "version=$(gh run view "$RUNID" --log -R gitpod-io/gitpod | grep 'main-gha\.[0-9]*' -o | head -n 1)"
echo "name=ide-integration-test-${{ github.run_id }}-${{ github.run_attempt }}"
} >> $GITHUB_OUTPUT
fi
Expand Down
2 changes: 1 addition & 1 deletion components/ide/gha-update-image/lib/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ const getInstallerVersion = async (version: string | undefined) => {
}
}
const installationVersion =
await $`echo '${tagInfo}' | awk '{ print $2 }' | grep -o 'main-gha.[0-9]*' | cut -d'/' -f3`
await $`echo '${tagInfo}' | awk '{ print $2 }' | grep -o 'main-gha\\.[0-9]*' | cut -d'/' -f3`
.text()
.catch((e) => {
throw new Error("Failed to parse installer version from git tag: " + e);
Expand Down
Loading