File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2020 last_sha : " ${{ fromJson(steps.check-last-run.outputs.data).workflow_runs[0].head_sha }}"
2121
2222 publish-maven-snapshot :
23- needs : [ "check-last-run" ]
23+ needs : ["check-last-run"]
2424 if : " ${{ needs.check-last-run.outputs.last_sha != github.sha }}"
2525 runs-on : " macos-latest"
2626 permissions :
3636 ORG_GRADLE_PROJECT_GitHubPackagesUsername : " ${{ github.actor }}"
3737
3838 publish-npm-snapshot :
39- needs : [ "check-last-run" ]
39+ needs : ["check-last-run"]
4040 if : " ${{ needs.check-last-run.outputs.last_sha != github.sha }}"
4141 runs-on : " macos-latest"
4242 permissions :
5151 ORG_GRADLE_PROJECT_GitHubPackagesPassword : " ${{ secrets.GITHUB_TOKEN }}"
5252
5353 dependency-submission :
54- needs : [ "check-last-run" ]
54+ needs : ["check-last-run"]
5555 if : " ${{ needs.check-last-run.outputs.last_sha != github.sha }}"
5656 runs-on : " ubuntu-latest"
5757 permissions :
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ name: "Release"
33
44on :
55 push :
6- tags : [ "v*.*.*" ]
6+ tags : ["v*.*.*"]
77
88jobs :
99 publish-maven :
Original file line number Diff line number Diff line change @@ -165,8 +165,8 @@ npmPublish {
165165 }
166166 }
167167 registries {
168- npmjs { authToken = project.property( " npmPublishToken" ) ?.toString() }
169- github { authToken = project.property( " GitHubPackagesPassword" ) ?.toString() }
168+ npmjs { authToken = project.properties[ " npmPublishToken" ] ?.toString() }
169+ github { authToken = project.properties[ " GitHubPackagesPassword" ] ?.toString() }
170170 }
171171}
172172
You can’t perform that action at this time.
0 commit comments