Skip to content

Commit

Permalink
Attempt fix
Browse files Browse the repository at this point in the history
Swapped id's of read properties
  • Loading branch information
rcubedev authored Dec 14, 2023
1 parent 9d21a38 commit 37da533
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,15 @@ jobs:
- name: Build with Gradle
run: ./gradlew build --no-daemon
- name: Read Project Version
id: read_properties
# id: read_second_property
id: read_property_sba_version
uses: christian-draeger/[email protected]
with:
path: gradle.properties
properties: version
- name: Read MC Version
id: read_properties
# id: read_fifth_property
id: read_property_mc_version
uses: christian-draeger/[email protected]
with:
path: gradle.properties
Expand All @@ -41,4 +43,5 @@ jobs:
uses: actions/upload-artifact@v3
with:
# name: SkyblockAddons-${{ steps.read_properties.outputs.version }}+${{ github.run_number }}-for-MC-${{ steps.read_properties.outputs.minecraftVersion }}
path: build/libs/SkyblockAddons-${{ steps.read_properties.outputs.version }}+${{ github.run_number }}-for-MC-${{ steps.read_properties.outputs.minecraftVersion }}
# path: build/libs/SkyblockAddons-${{ steps.read_second_property.outputs.version }}+${{ github.run_number }}-for-MC-${{ steps.read_fifth_property.outputs.minecraftVersion }}
path: build/libs/SkyblockAddons-${{ steps.read_property_sba_version.outputs.version }}+${{ github.run_number }}-for-MC-${{ steps.read_property_mc_version.outputs.minecraftVersion }}

0 comments on commit 37da533

Please sign in to comment.