1
0
jansel 5f07b1b61d
Some checks failed
Build & Publish / build (push) Has been cancelled
Update .github/workflows/ci.yml
2024-12-11 12:39:04 +00:00

40 lines
748 B
YAML

name: Build (CI)
on:
push:
branches-ignore:
- root
- develop
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Disable SSL verify (Temporary Fix)
run: git config --global http.sslVerify false
- uses: actions/checkout@v4
- name: Set up Java
uses: actions/setup-java@v4
with:
java-version: 17
distribution: temurin
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Gradle (Build)
run: "./gradlew build"
- name: Upload build artifacts
uses: actions/upload-artifact@v4
with:
name: Build and Deploy Artifacts
path: build/libs/*.jar