Skip to content

Commit

Permalink
Create gradle.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
I-No-oNe authored Nov 27, 2023
1 parent a31df31 commit a2481fb
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@


name: Java CI with Gradle

on: [ push,pull_request ]

concurrency:
group: "latest"
cancel-in-progress: true

jobs:
build:
runs-on: ubuntu-latest
permissions: write-all
steps:
- uses: actions/checkout@v3

- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'zulu'
java-package: 'jdk'

- name: Grant execute permission for gradlew
run: chmod +x gradlew

- name: Build
run: ./gradlew build

- name: Remove *-sources.jar
run: rm ./build/libs/*-sources.jar || true

- uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: "latest"
prerelease: true
title: "Latest Build"
files: |
./build/libs/*.jar

0 comments on commit a2481fb

Please sign in to comment.