We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe14145 commit 0cef221Copy full SHA for 0cef221
.github/workflows/vss-integration.yml
@@ -61,12 +61,12 @@ jobs:
61
run: |
62
# Print Info
63
java -version
64
- GRADLE_VERSION=$(gradle --version | grep "Gradle" | awk '{print $2}')
+ GRADLE_VERSION=$(gradle --version | awk '/^Gradle/ {print $2}' | head -1)
65
if [ -z "$GRADLE_VERSION" ]; then
66
echo "Failed to extract Gradle version, using default"
67
- GRADLE_VERSION="9.0.0-rc-1"
+ GRADLE_VERSION="9.0"
68
fi
69
- echo $GRADLE_VERSION
+ echo "Gradle $GRADLE_VERSION"
70
71
cd vss-server/java
72
gradle wrapper --gradle-version $GRADLE_VERSION
0 commit comments