From 9b915b4d615aa078b35bcb33b3e930e56df1c54e Mon Sep 17 00:00:00 2001 From: waelabdallah Date: Mon, 11 Nov 2024 14:23:42 +0100 Subject: [PATCH] Install Quarkus using SDKMAN! in GitHub Actions workflow --- .github/workflows/catalog-service-ci-cd.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/catalog-service-ci-cd.yml b/.github/workflows/catalog-service-ci-cd.yml index 5af40692..b936cbb1 100644 --- a/.github/workflows/catalog-service-ci-cd.yml +++ b/.github/workflows/catalog-service-ci-cd.yml @@ -21,7 +21,13 @@ jobs: with: distribution: 'temurin' java-version: '17' - + + - name: Install SDKMAN! + run: | + curl -s "https://get.sdkman.io" | bash + source "$HOME/.sdkman/bin/sdkman-init.sh" + sdk install quarkus + - name: Build with Quarkus run: | cd catalog/catalog-service/