File tree Expand file tree Collapse file tree 4 files changed +82
-2
lines changed Expand file tree Collapse file tree 4 files changed +82
-2
lines changed Original file line number Diff line number Diff line change
1
+ name : Makefile CI
2
+
3
+ on :
4
+ push :
5
+ branches : [ "main" ]
6
+
7
+ jobs :
8
+ build :
9
+
10
+ runs-on : ubuntu-latest
11
+
12
+ steps :
13
+ - name : checkout
14
+ uses : actions/checkout@v4
15
+
16
+ - name : install-python
17
+ uses : actions/setup-python@v5
18
+ with :
19
+ python-version : ' 3.12'
20
+
21
+ - name : pip-requirements
22
+ run : pip install -r requirements.txt
23
+
24
+ - name : npm-setup
25
+ uses : actions/setup-node@v4
26
+ with :
27
+ node-version : 20
28
+
29
+ - name : npm-install-setup
30
+ uses : bahmutov/npm-install@v1
31
+ with :
32
+ working-directory : ./
33
+
34
+ - name : build-docs
35
+ run : ./build-docs-ci.sh
36
+
37
+ - name : wrap-artifact
38
+ run : ./wrap-artifact.sh
39
+
40
+ - name : upload-artifact
41
+ uses : actions/upload-artifact@v4
42
+ with :
43
+ name : minio-docs-artifact
44
+ compression-level : 9
45
+ path : ./minio
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ set -ex
4
+
5
+ export PATH=${PATH} :${HOME} /.local/bin
6
+
7
+
8
+ make SYNC_SDK=TRUE linux
9
+ make windows macos container k8s openshift eks aks gke
10
+
11
+ mkdir -p minio/kubernetes/upstream
12
+ cp -vr build/HEAD/k8s/html/* ./minio/kubernetes/upstream/
13
+
14
+ mkdir -p minio/kubernetes/eks
15
+ cp -vr build/HEAD/eks/html/* ./minio/kubernetes/eks/
16
+
17
+
18
+ mkdir -p minio/kubernetes/gke
19
+ cp -vr build/HEAD/gke/html/* ./minio/kubernetes/gke/
20
+
21
+ mkdir -p minio/kubernetes/aks
22
+ cp -vr build/HEAD/aks/html/* ./minio/kubernetes/aks/
23
+
24
+ mkdir -p minio/kubernetes/openshift
25
+ cp -vr build/HEAD/openshift/html/* ./minio/kubernetes/openshift/
26
+
27
+ mkdir -p minio/container
28
+ cp -vr build/HEAD/container/html/* ./minio/container/
29
+
30
+ mkdir -p minio/linux
31
+ cp -vr build/HEAD/linux/html/* ./minio/linux/
32
+
33
+ mkdir -p minio/macos
34
+ cp -vr build/HEAD/macos/html/* ./minio/macos/
35
+
36
+ mkdir -p minio/windows
37
+ cp -vr build/HEAD/windows/html/* ./minio/windows/
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
3
3
set -e
4
- set -x
5
4
6
5
function replace() {
7
6
tmp_prefix=${RANDOM}
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
3
3
set -e
4
- set -x
5
4
6
5
function main() {
7
6
You can’t perform that action at this time.
0 commit comments