Skip to content

Commit

Permalink
Create gradle.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Fesuoy1 authored Feb 2, 2024
1 parent 680c2b5 commit 92c4b3b
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: Gradle CI

on:
push:
branches:
- '*'
paths-ignore:
- 'README.md'
- '.gitignore'
pull_request:
branches:
- '*'
paths-ignore:
- 'README.md'
- '.gitignore'
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
name: Build with gradle

steps:
- uses: actions/checkout@v2
- name: Set up JDK
uses: actions/setup-java@v2.3.1
with:
java-version: 17
distribution: temurin
- uses: actions/cache@v2
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
./.gradle/loom-cache
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew build --no-daemon
- uses: actions/upload-artifact@v3
with:
name: easy_commands-artifacts
path: build/libs/*.jar

0 comments on commit 92c4b3b

Please sign in to comment.