Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
1 change: 1 addition & 0 deletions .github/workflows/ide-integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ jobs:

{
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 'Build Gitpod' | grep 'Tag the release' | 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