Ver Fonte

update release and deploy workflow

Daniel Bohry há 1 semana atrás
pai
commit
cff75f4463
1 ficheiros alterados com 4 adições e 4 exclusões
  1. 4 4
      .github/workflows/buildAndRelease.yml

+ 4 - 4
.github/workflows/buildAndRelease.yml

@@ -12,8 +12,8 @@ on:
         type: string
 
 jobs:
-  build-and-test:
-    name: Build and Test
+  build:
+    name: Build
     runs-on: ubuntu-latest
     steps:
       - uses: actions/checkout@v3
@@ -25,11 +25,11 @@ jobs:
           java-version: '25'
           distribution: 'temurin'
       - name: Build with Gradle
-        run: chmod +x ./gradlew && ./gradlew clean build test
+        run: chmod +x ./gradlew && ./gradlew clean build -x test
 
   dockerize:
     name: Dockerize Application
-    needs: build-and-test
+    needs: build
     runs-on: ubuntu-latest
     steps:
       - uses: actions/checkout@v3