From c9e4489b4e5e2403c41efe7a2f0024fc25e5c917 Mon Sep 17 00:00:00 2001 From: carloshra Date: Thu, 26 Feb 2026 22:42:49 +0000 Subject: [PATCH] Adicionar .gitea/workflows/build.yaml --- .gitea/workflows/build.yaml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .gitea/workflows/build.yaml diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml new file mode 100644 index 0000000..261ecf8 --- /dev/null +++ b/.gitea/workflows/build.yaml @@ -0,0 +1,20 @@ +name: Gitea Actions Java Build +run-name: ${{ gitea.actor }} está buildando o coolify-back 🚀 +on: [push] + +jobs: + build-projeto: + runs-on: ubuntu-latest # Ou o label que você definiu no seu runner + steps: + - name: Checkout do código + uses: actions/checkout@v4 + + - name: Configurar Java JDK + uses: actions/setup-java@v4 + with: + java-version: '17' + distribution: 'temurin' + cache: 'maven' + + - name: Build com Maven + run: mvn -B package --file pom.xml \ No newline at end of file