Minor tweaks to build workflow.

Removes trailing whitespace and simplifies some step names.
This commit is contained in:
Andreas Troelsen
2023-12-31 02:24:53 +01:00
parent 614d95683e
commit 932b9de8f2
+3 -3
View File
@@ -1,6 +1,6 @@
name: build name: build
on: on:
workflow_dispatch: workflow_dispatch:
push: push:
@@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: 'Checkout source code' - name: 'Checkout'
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: 'Set up JDK' - name: 'Set up JDK'
@@ -19,7 +19,7 @@ jobs:
distribution: 'adopt' distribution: 'adopt'
cache: 'gradle' cache: 'gradle'
- name: 'Build, test, and package' - name: 'Build'
run: ./gradlew build --no-daemon run: ./gradlew build --no-daemon
- name: 'Upload artifact' - name: 'Upload artifact'