File tree Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -120,13 +120,27 @@ jobs:
120
120
with :
121
121
spring-boot-version : ${{ needs.build-and-stage-release.outputs.version }}
122
122
token : ${{ secrets.GH_ACTIONS_REPO_TOKEN }}
123
+ trigger-docs-build :
124
+ name : Trigger Docs Build
125
+ runs-on : ubuntu-latest
126
+ needs :
127
+ - build-and-stage-release
128
+ - sync-to-maven-central
129
+ permissions :
130
+ actions : write
131
+ steps :
132
+ - name : Run Deploy Docs Workflow
133
+ env :
134
+ GH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
135
+ run : gh workflow run deploy-docs.yml --repo spring-projects/spring-boot -r docs-build -f build-refname=${{ github.ref_name }} -f build-version=${{ needs.build-and-stage-release.outputs.version }}
123
136
create-github-release :
124
137
name : Create GitHub Release
125
138
needs :
126
139
- build-and-stage-release
127
140
- promote-release
128
141
- publish-gradle-plugin
129
142
- publish-to-sdkman
143
+ - trigger-docs-build
130
144
- update-homebrew-tap
131
145
runs-on : ${{ vars.UBUNTU_SMALL || 'ubuntu-latest' }}
132
146
steps :
You can’t perform that action at this time.
0 commit comments