Skip to content

Commit 3d77322

Browse files
committed
[Chore]: Update github artifacts name
1 parent 55e355e commit 3d77322

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/build.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,15 @@ jobs:
2424
- run: chmod +x ./gradlew
2525
- name: Build with Gradle
2626
run: ./gradlew build
27+
- name: Read minecraft version from gradle.properties
28+
id: read-version
29+
run: |
30+
minecraft_version=$(grep '^minecraft_version=' gradle.properties | cut -d'=' -f2)
31+
echo "minecraft_version=$minecraft_version" >> $GITHUB_ENV
2732
- name: Upload Build Artifacts
2833
uses: actions/upload-artifact@v4
2934
with:
30-
name: SophisticatedCore
35+
name: SophisticatedCore-${{ env.minecraft_version }}
3136
path: build/libs
3237
- name: Publish to Github Packages
3338
env:

0 commit comments

Comments
 (0)