From 0a126343118afb1a41bc3966a5461d3ab6dd2155 Mon Sep 17 00:00:00 2001 From: thegreystone Date: Tue, 30 Jul 2024 02:40:45 +0200 Subject: [PATCH] Add step to make mvnw executable in CI workflow --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a16a08b..4a63469 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,11 +29,12 @@ jobs: key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} restore-keys: | ${{ runner.os }}-maven- + - name: Make mvnw executable + run: chmod +x ./mvnw - name: Build with Maven run: ./mvnw clean package - name: Run tests run: ./mvnw test - docker: needs: build runs-on: ubuntu-latest