diff --git a/.gitea/workflows/.yml b/.gitea/workflows/.yml new file mode 100644 index 0000000..20fb72f --- /dev/null +++ b/.gitea/workflows/.yml @@ -0,0 +1,19 @@ +name: Spring Boot CI + +on: + push: + branches: + - main + +jobs: + build: + runs-on: self-hosted + steps: + - uses: actions/checkout@v2 + - name: Set up JDK 17 + uses: actions/setup-java@v2 + with: + java-version: '17' + distribution: 'adopt' + - name: Build with Maven + run: ./mvnw package spring-boot:repackage