Skip to content

Commit

Permalink
Reactivate actions build
Browse files Browse the repository at this point in the history
  • Loading branch information
TheCodex6824 committed Aug 28, 2024
1 parent f4bc045 commit 599b950
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 19 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/gradle-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Build with Gradle

on:
push:
pull_request:

jobs:
gradle-build:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout source
uses: actions/checkout@v4
- name: Validate Gradle Wrapper
uses: gradle/actions/wrapper-validation@v3
- name: Setup Java 8 (Temurin)
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 8
architecture: x64
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v3
- name: Run build using Gradle Wrapper
run: ./gradlew build
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: artifacts-${{ matrix.os }}
path: build/libs/ThaumicAugmentation-*.jar
if-no-files-found: error
19 changes: 0 additions & 19 deletions .github/workflows/test.yml

This file was deleted.

0 comments on commit 599b950

Please sign in to comment.