Skip to content

Commit 02bc50f

Browse files
committed
try fixing auth
1 parent d8f4156 commit 02bc50f

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/daily.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
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:
@@ -36,7 +36,7 @@ jobs:
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:
@@ -51,7 +51,7 @@ jobs:
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:

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: "Release"
33

44
on:
55
push:
6-
tags: [ "v*.*.*" ]
6+
tags: ["v*.*.*"]
77

88
jobs:
99
publish-maven:

build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)