File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 40
40
})
41
41
}
42
42
r = httpx .post (deployment_url , headers = gh_headers , json = deployment_data )
43
- print (f'POST { deployment_url } : { r .status_code } { r .text } ' )
43
+ print (f'POST { deployment_url } : { r .status_code } ' ) # {r.text}
44
44
r .raise_for_status ()
45
45
deployment_id = r .json ()['id' ]
46
46
51
51
'state' : 'success' ,
52
52
}
53
53
r = httpx .post (status_url , headers = gh_headers , json = status_data )
54
- print (f'POST { status_url } : { r .status_code } { r .text } ' )
54
+ print (f'POST { status_url } : { r .status_code } ' ) # {r.text}
55
55
r .raise_for_status ()
Original file line number Diff line number Diff line change 83
83
- name : Store docs
84
84
uses : actions/upload-artifact@v4
85
85
with :
86
- name : docs- site
86
+ name : site
87
87
path : site
88
88
89
89
test-live :
@@ -238,13 +238,14 @@ jobs:
238
238
239
239
steps :
240
240
- uses : actions/checkout@v4
241
+
241
242
- uses : actions/setup-node@v4
242
243
- run : npm install
243
244
working-directory : docs-site
244
245
245
246
- uses : actions/download-artifact@v4
246
247
with :
247
- name : docs- site
248
+ name : site
248
249
path : site
249
250
250
251
- uses : cloudflare/wrangler-action@v3
You can’t perform that action at this time.
0 commit comments