File tree Expand file tree Collapse file tree 3 files changed +9
-8
lines changed
Expand file tree Collapse file tree 3 files changed +9
-8
lines changed Original file line number Diff line number Diff line change 55name : publish-to-github-packages
66on :
77 workflow_run :
8- workflows : [full ]
8+ workflows : [build ]
99 types : [completed]
10- branches : ["**"]
10+ branches :
11+ - " **"
12+ - " !renovate/**"
13+ - " !deps/**"
1114 tags : [v*]
1215jobs :
1316 publish :
3336 - uses : gradle/actions/setup-gradle@v4
3437 with :
3538 cache-encryption-key : ${{ secrets.GRADLE_ENCRYPTION_KEY }}
36- - run : ./gradlew publishAllPublicationsToGhRepository --scan
39+ - run : ./gradlew publishAllPublicationsToGhRepository --scan --no-configuration-cache
40+ if : steps.git_num_file_changes.outputs.stdout > 0
3741 env :
3842 ORG_GRADLE_PROJECT_ghUsername : ${{ secrets.GITHUB_ACTOR }}
3943 ORG_GRADLE_PROJECT_ghPassword : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change 5858 id : create_pr
5959 with :
6060 title : " chore(deps): java"
61- branch : topic /update-java
61+ branch : deps /update-java
6262 token : ${{ secrets.GH_MERGE_PAT }}
6363 - run : gh pr merge --auto --squash ${{ steps.create_pr.outputs.pull-request-number }}
6464 if : ${{ steps.create_pr.outputs.pull-request-number != '' }}
Original file line number Diff line number Diff line change 2828 ./gradlew build --console=plain
2929
3030.PHONY : merge
31- merge : merge-head create-pr build watch-full watch-publish merge-squash
31+ merge : merge-head create-pr build watch-full merge-squash
3232
3333.PHONY : clean
3434clean :
8282
8383watch-full :
8484 @gh run watch $$($(call gh_head_run_id, "full") ) --exit-status
85-
86- watch-publish :
87- @gh run watch $$($(call gh_head_run_id, "publish") ) --exit-status
You can’t perform that action at this time.
0 commit comments