File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed
Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -59,10 +59,17 @@ jobs:
5959 cache-encryption-key : ${{ secrets.GRADLE_ENCRYPTION_KEY }}
6060 cache-read-only : ${{ github.ref != 'refs/heads/master' && !startsWith(github.ref, 'refs/heads/1.') }}
6161
62- - name : Migrate mappings
62+ - name : Migrate mappings for main source set
63+ run : |
64+ ./gradlew migrateMappings --mappings ${{ inputs.yarn_mappings }} --input "src/main/java" --output "src/main/java_"
65+ rm -rf ./src/main/java
66+ mv ./src/main/java_ ./src/main/java
67+
68+ - name : Migrate mappings for test source set
6369 run : |
6470 ./gradlew migrateMappings --mappings ${{ inputs.yarn_mappings }} --overrideInputsIHaveABackup
6571 ./gradlew migrateTestMappings --mappings ${{ inputs.yarn_mappings }} --overrideInputsIHaveABackup
72+ ./gradlew migrateClassTweakerMappings --mappings ${{ inputs.yarn_mappings }} --overrideInputsIHaveABackup
6673
6774 - name : Update version constants
6875 run : |
You can’t perform that action at this time.
0 commit comments