Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
SpoonySimone committed Feb 16, 2024
2 parents 7a0739b + ce07692 commit 7a04aa9
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: 17
distribution: 'adopt'
cache: gradle

- name: Change wrapper permissions
run: chmod +x ./gradlew

- name: Build with Gradle wrapper
run: ./gradlew build

- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: AutoGG+
path: /home/runner/work/AutoGGPlus/AutoGGPlus/versions/1.8.9/build/libs

0 comments on commit 7a04aa9

Please sign in to comment.