Skip to content

Commit a820b2d

Browse files
committed
fix gradle properties
1 parent 0265623 commit a820b2d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/daily.yml

Lines changed: 4 additions & 4 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-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: "ubuntu-latest"
2626
permissions:
@@ -32,11 +32,11 @@ jobs:
3232
- uses: "./.github/actions/setup"
3333
- run: "./gradlew publishAllPublicationsToGitHubPackagesRepository"
3434
env:
35-
ORG_GRADLE_PROJECT_githubToken: "${{ secrets.GITHUB_TOKEN }}"
36-
ORG_GRADLE_PROJECT_githubUser: "${{ github.actor }}"
35+
ORG_GRADLE_PROJECT_GitHubPackagesPassword: "${{ secrets.GITHUB_TOKEN }}"
36+
ORG_GRADLE_PROJECT_GitHubPackagesUsername: "${{ github.actor }}"
3737

3838
dependency-submission:
39-
needs: ["check-last-run"]
39+
needs: [ "check-last-run" ]
4040
if: "${{ needs.check-last-run.outputs.last_sha != github.sha }}"
4141
runs-on: "ubuntu-latest"
4242
permissions:

0 commit comments

Comments
 (0)