Create ci.yml #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Java CI | |
on: [ push ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- uses: actions/[email protected] | |
with: | |
java-version: '17' | |
distribution: 'adopt' | |
- name: Get Commit Data | |
id: commit | |
uses: prompt/[email protected] | |
- name: Validate Gradle wrapper | |
uses: gradle/wrapper-validation-action@v1 | |
- name: Change Wrapper Permissions | |
run: chmod +x ./gradlew | |
- name: Gradle Build | |
uses: gradle/[email protected] | |
with: | |
arguments: shadowJar --scan | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
VERSION: dev-${{ steps.commit.outputs.short }} | |
- uses: actions/[email protected] | |
with: | |
name: MikChanNoMOTD-dev-${{ steps.commit.outputs.short }}.zip | |
path: | | |
build/libs/ | |
LICENSE.txt |