File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 14
14
15
15
strategy :
16
16
matrix :
17
- os : [ macos-14 , ubuntu-latest, windows-latest ]
17
+ os : [ macos-latest , ubuntu-latest, windows-latest ]
18
18
19
19
runs-on : ${{matrix.os}}
20
20
55
55
run : ./gradlew publishAllPublicationsToMavenCentralRepository
56
56
57
57
- name : Publish the windows artifact
58
- if : false && matrix.os == 'windows-latest'
58
+ if : matrix.os == 'windows-latest'
59
59
env :
60
60
ORG_GRADLE_PROJECT_mavenCentralUsername : ${{ secrets.NEXUS_USERNAME }}
61
61
ORG_GRADLE_PROJECT_mavenCentralPassword : ${{ secrets.NEXUS_PASSWORD }}
65
65
run : ./gradlew publishMingwX64PublicationToMavenCentralRepository
66
66
67
67
- name : Publish the linux artifact
68
- if : false && matrix.os == 'ubuntu-latest'
68
+ if : matrix.os == 'ubuntu-latest'
69
69
env :
70
70
ORG_GRADLE_PROJECT_mavenCentralUsername : ${{ secrets.NEXUS_USERNAME }}
71
71
ORG_GRADLE_PROJECT_mavenCentralPassword : ${{ secrets.NEXUS_PASSWORD }}
You can’t perform that action at this time.
0 commit comments