47
47
# Upload the mdBook output to GitHub Pages
48
48
- name : Upload mdbook to GitHub Pages
49
49
if : matrix.service == 'account' # Only upload mdbook once
50
- uses : actions/upload-artifact@v3
50
+ uses : actions/upload-artifact@v4
51
51
with :
52
52
name : mdbook
53
53
path : ./docs/book
66
66
67
67
# Deployment job
68
68
deploy :
69
+ name : Deploy mdbook and OpenAPI microservices to GitHub Pages
69
70
runs-on : ubuntu-latest
70
71
needs : build
71
72
environment :
@@ -76,34 +77,34 @@ jobs:
76
77
uses : actions/checkout@v4
77
78
78
79
- name : Download mdbook artifact
79
- uses : actions/download-artifact@v3
80
+ uses : actions/download-artifact@v4
80
81
with :
81
82
name : mdbook
82
83
path : ./docs/book
83
84
84
85
- name : Download account OpenAPI artifacts
85
- uses : actions/download-artifact@v3
86
+ uses : actions/download-artifact@v4
86
87
with :
87
88
name : openapi-account
88
89
path : ./docs/account
89
90
90
- - name : Download content-watcher OpenAPI artifacts
91
- uses : actions/download-artifact@v3
92
- with :
93
- name : openapi-content-watcher
94
- path : ./docs/content-watcher
91
+ # - name: Download content-watcher OpenAPI artifacts
92
+ # uses: actions/download-artifact@v4
93
+ # with:
94
+ # name: openapi-content-watcher
95
+ # path: ./docs/content-watcher
95
96
96
- - name : Download content-publishing OpenAPI artifacts
97
- uses : actions/download-artifact@v3
98
- with :
99
- name : openapi-content-publishing
100
- path : ./docs/content-publishing
97
+ # - name: Download content-publishing OpenAPI artifacts
98
+ # uses: actions/download-artifact@v4
99
+ # with:
100
+ # name: openapi-content-publishing
101
+ # path: ./docs/content-publishing
101
102
102
- - name : Download graph OpenAPI artifacts
103
- uses : actions/download-artifact@v3
104
- with :
105
- name : openapi-graph
106
- path : ./docs/graph
103
+ # - name: Download graph OpenAPI artifacts
104
+ # uses: actions/download-artifact@v4
105
+ # with:
106
+ # name: openapi-graph
107
+ # path: ./docs/graph
107
108
108
109
- name : Deploy to GitHub Pages
109
110
id : deployment
0 commit comments