Skip to content

Commit

Permalink
Read properties first (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinGroscheTT committed Dec 8, 2022
1 parent 254a53a commit 9e6e53b
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,13 @@ jobs:
steps:
- name: Checkout Code
uses: actions/checkout@v2
- name: Read Plugin Version
uses:
id: version
with:
file: gradle.properties
property: version
default: latest
- name: Set up JDK 8
uses: actions/setup-java@v3
with:
Expand All @@ -25,13 +32,6 @@ jobs:
with:
gradle-version: 7.3
arguments: build -x containerTest
- name: Read Plugin Version
uses: madhead/read-java-properties@latest
id: version
with:
file: gradle.properties
property: version
default: latest
- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
Expand Down

0 comments on commit 9e6e53b

Please sign in to comment.