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:
120120 with :
121121 spring-boot-version : ${{ needs.build-and-stage-release.outputs.version }}
122122 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 }}
123136 create-github-release :
124137 name : Create GitHub Release
125138 needs :
126139 - build-and-stage-release
127140 - promote-release
128141 - publish-gradle-plugin
129142 - publish-to-sdkman
143+ - trigger-docs-build
130144 - update-homebrew-tap
131145 runs-on : ${{ vars.UBUNTU_SMALL || 'ubuntu-latest' }}
132146 steps :
You can’t perform that action at this time.
0 commit comments