File tree Expand file tree Collapse file tree 1 file changed +13
-6
lines changed
Expand file tree Collapse file tree 1 file changed +13
-6
lines changed Original file line number Diff line number Diff line change @@ -15,37 +15,44 @@ jobs:
1515 runs-on : ubuntu-22.04
1616 steps :
1717 - name : Checkout
18- uses : actions/checkout@v4
18+ uses : actions/checkout@v5
1919 with :
2020 submodules : true
2121
2222 - name : Set up JDK
23- uses : actions/setup-java@v4
23+ uses : actions/setup-java@v5
2424 with :
2525 distribution : temurin
2626 java-version : 21
2727
2828 - name : Setup Gradle
29- uses : gradle/actions/setup-gradle@v4
29+ uses : gradle/actions/setup-gradle@v5
3030
3131 - name : Pull Built Generated Data
32- uses : actions/download-artifact@v4
32+ uses : actions/download-artifact@v5
3333 with :
3434 name : generated-data
3535 path : neoforge-main/src/generated/resources
3636
3737 - name : Pull Compilation Data (Core)
38- uses : actions/download-artifact@v4
38+ uses : actions/download-artifact@v5
3939 with :
4040 name : build-core
4141 path : core-api/build
4242
4343 - name : Pull Compilation Data (Main)
44- uses : actions/download-artifact@v4
44+ uses : actions/download-artifact@v5
4545 with :
4646 name : build-main
4747 path : neoforge-main/build
4848
49+ - name : Build It Again, To Be Sure
50+ run : ./gradlew :neoforge-main:build
51+ env :
52+ VERSION : ${{ inputs.version }}
53+ GITHUB_ACTOR : ${{ secrets.GITHUB_ACTOR }}
54+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
55+
4956 - name : Publish
5057 run : ./gradlew :neoforge-main:publish
5158 env :
You can’t perform that action at this time.
0 commit comments