File tree 2 files changed +6
-3
lines changed
2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 55
55
shell : bash
56
56
57
57
- name : Upload wheels
58
- uses : actions/upload-artifact@v3
58
+ uses : actions/upload-artifact@v4
59
59
with :
60
60
path : wheelhouse/*.whl
61
+ overwrite : true
Original file line number Diff line number Diff line change @@ -83,10 +83,11 @@ jobs:
83
83
conda run -n build_binary make html
84
84
cd ..
85
85
- name : Upload Built-Docs
86
- uses : actions/upload-artifact@v3
86
+ uses : actions/upload-artifact@v4
87
87
with :
88
88
name : Built-Docs
89
89
path : docs/build/html/
90
+ overwrite : true
90
91
- name : Get output time
91
92
run : echo "The time was ${{ steps.build.outputs.time }}"
92
93
- name : Deploy
@@ -105,10 +106,11 @@ jobs:
105
106
- name : Checkout
106
107
uses : actions/checkout@v3
107
108
- name : Download artifact
108
- uses : actions/download-artifact@v3
109
+ uses : actions/download-artifact@v4
109
110
with :
110
111
name : Built-Docs
111
112
path : docs
113
+ overwrite : true
112
114
- name : Add no-index tag
113
115
run : |
114
116
find docs -name "*.html" -print0 | xargs -0 sed -i '/<head>/a \ \ <meta name="robots" content="noindex">';
You can’t perform that action at this time.
0 commit comments