File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 20
20
last_sha : " ${{ fromJson(steps.check-last-run.outputs.data).workflow_runs[0].head_sha }}"
21
21
22
22
publish-maven-snapshot :
23
- needs : [ "check-last-run" ]
23
+ needs : ["check-last-run"]
24
24
if : " ${{ needs.check-last-run.outputs.last_sha != github.sha }}"
25
25
runs-on : " macos-latest"
26
26
permissions :
36
36
ORG_GRADLE_PROJECT_GitHubPackagesUsername : " ${{ github.actor }}"
37
37
38
38
publish-npm-snapshot :
39
- needs : [ "check-last-run" ]
39
+ needs : ["check-last-run"]
40
40
if : " ${{ needs.check-last-run.outputs.last_sha != github.sha }}"
41
41
runs-on : " macos-latest"
42
42
permissions :
51
51
ORG_GRADLE_PROJECT_GitHubPackagesPassword : " ${{ secrets.GITHUB_TOKEN }}"
52
52
53
53
dependency-submission :
54
- needs : [ "check-last-run" ]
54
+ needs : ["check-last-run"]
55
55
if : " ${{ needs.check-last-run.outputs.last_sha != github.sha }}"
56
56
runs-on : " ubuntu-latest"
57
57
permissions :
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ name: "Release"
3
3
4
4
on :
5
5
push :
6
- tags : [ "v*.*.*" ]
6
+ tags : ["v*.*.*"]
7
7
8
8
jobs :
9
9
publish-maven :
Original file line number Diff line number Diff line change @@ -165,8 +165,8 @@ npmPublish {
165
165
}
166
166
}
167
167
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() }
170
170
}
171
171
}
172
172
You can’t perform that action at this time.
0 commit comments