We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 55e355e commit 3d77322Copy full SHA for 3d77322
.github/workflows/build.yml
@@ -24,10 +24,15 @@ jobs:
24
- run: chmod +x ./gradlew
25
- name: Build with Gradle
26
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
32
- name: Upload Build Artifacts
33
uses: actions/upload-artifact@v4
34
with:
- name: SophisticatedCore
35
+ name: SophisticatedCore-${{ env.minecraft_version }}
36
path: build/libs
37
- name: Publish to Github Packages
38
env:
0 commit comments