Skip to content

Modified workflows a bit more, removed .idea directory from repo almo… #17

Modified workflows a bit more, removed .idea directory from repo almo…

Modified workflows a bit more, removed .idea directory from repo almo… #17

Workflow file for this run

name: Build & Upload
on:
push:
branches:
- develop
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Set up Java
uses: actions/setup-java@v4
with:
java-version: 17
distribution: temurin
- name: Build
uses: gradle/gradle-build-action@v2
with:
arguments: build
- name: Upload artifacts (JARs)
uses: actions/upload-artifact@v3
with:
name: JARs
path: build/libs/*.jar
if-no-files-found: warn