Skip to content

Commit 03a446a

Browse files
committed
i swear this will fix it
1 parent a1aa2b6 commit 03a446a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/gradle.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ jobs:
2929
- name: Calculate artifact names
3030
id: calculate_artifact_names
3131
run: |
32-
MC=$(awk -F '=' '/minecraft_version/ { print $2; }' gradle.properties)
33-
BUILD=$(awk -F '=' '/mod_version/ { print $2; }' gradle.properties)
32+
MC=$(awk -F '=' '$1 == "minecraft_version" { print $2 }' gradle.properties)
33+
BUILD=$(awk -F '=' '$1 == "mod_version" { print $2 }' gradle.properties)
3434
echo "forge=build/libs/Psi-${MC}-${BUILD}.jar" >> "$GITHUB_OUTPUT"
3535
3636
- name: Lint files

0 commit comments

Comments
 (0)