FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
spring-framework/.github/workflows/deploy-docs.yml at main · codingkiddo/spring-framework · GitHub
codingkiddo
/
spring-framework
Public
forked from
spring-projects/spring-framework
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
spring-framework
/
.github
/
workflows
/
deploy-docs.yml
Copy path
View runs
More file actions
More file actions
Latest commit
History
History
History
35 lines (35 loc) · 953 Bytes
Breadcrumbs
spring-framework
/
.github
/
workflows
/
deploy-docs.yml
Copy path
File metadata and controls
35 lines (35 loc) · 953 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name
:
Deploy Docs
on
:
push
:
branches
:
-
'
main
'
-
'
*.x
'
-
'
!gh-pages
'
tags
:
-
'
v*
'
repository_dispatch
:
types
:
request-build-reference
#
legacy
workflow_dispatch
:
permissions
:
actions
:
write
jobs
:
build
:
name
:
Dispatch docs deployment
if
:
github.repository_owner == 'spring-projects'
runs-on
:
ubuntu-latest
steps
:
-
name
:
Check out code
uses
:
actions/checkout@v6
with
:
fetch-depth
:
1
ref
:
docs-build
-
name
:
Dispatch (partial build)
if
:
github.ref_type == 'branch'
env
:
GH_TOKEN
:
${{ secrets.GITHUB_TOKEN }}
run
:
gh workflow run deploy-docs.yml -r $(git rev-parse --abbrev-ref HEAD) -f build-refname=${{ github.ref_name }}
-
name
:
Dispatch (full build)
if
:
github.ref_type == 'tag'
env
:
GH_TOKEN
:
${{ secrets.GITHUB_TOKEN }}
run
:
gh workflow run deploy-docs.yml -r $(git rev-parse --abbrev-ref HEAD)
Back
|
FazBrowse Home
|
New Git URL