File tree Expand file tree Collapse file tree 1 file changed +23
-1
lines changed
Expand file tree Collapse file tree 1 file changed +23
-1
lines changed Original file line number Diff line number Diff line change 44 release :
55 types :
66 - created
7- workflow_dispatch :
87
98jobs :
109 publish-artifacts :
2423 ORG_GRADLE_PROJECT_maven_repo_url : ${{ secrets.HAR_REPO_URL }}
2524 ORG_GRADLE_PROJECT_maven_user : ${{ secrets.HAR_PUBLISH_USER }}
2625 ORG_GRADLE_PROJECT_maven_password : ${{ secrets.HAR_PUBLISH_TOKEN }}
26+ post-publish-artifacts :
27+ runs-on : ubuntu-24.04
28+ needs : [ publish-artifacts ]
29+ steps :
30+ - name : Get Token from Github App
31+ uses : tibdex/github-app-token@v2
32+ id : generate-token
33+ with :
34+ app_id : ${{ secrets.GH_CI_APP_ID }}
35+ private_key : ${{ secrets.GH_CI_APP_PRIVATE_KEY }}
36+ repositories : >-
37+ ["hypertrace-bom"]
38+ - name : Auto upgrade BOM
39+ uses : peter-evans/repository-dispatch@v3
40+ with :
41+ token : ${{ steps.generate-token.outputs.token }}
42+ repository : hypertrace/hypertrace-bom
43+ event-type : upgrade-version
44+ client-payload : |
45+ {
46+ "repository": "${{ github.repository }}",
47+ "version": "${{ github.ref }}"
48+ }
2749
2850
You can’t perform that action at this time.
0 commit comments