Skip to content

Switch to use the SignText.LINES constant #11

Switch to use the SignText.LINES constant

Switch to use the SignText.LINES constant #11

Workflow file for this run

name: Java CI with Gradle
on: [push]
jobs:
jdk17:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Setup JDK 17
uses: actions/setup-java@v2
with:
java-version: '17'
distribution: 'temurin'
- name: Build with Gradle
uses: gradle/gradle-build-action@v2
with:
arguments: build
- name: Locate built JARfile
id: jar
run: |
rm build/libs/*-slim.jar
echo "##[set-output name=jarfile;]$(ls -1 build/libs/)"
- name: Upload artifact
uses: actions/[email protected]
with:
name: jdk17
path: build/libs/${{ steps.jar.outputs.jarfile }}