File tree 1 file changed +11
-0
lines changed
1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change 13
13
steps :
14
14
- uses : actions/checkout@v3
15
15
16
+ - name : Install operator-sdk
17
+ run : |
18
+ export ARCH=$(case $(uname -m) in x86_64) echo -n amd64 ;; aarch64) echo -n arm64 ;; *) echo -n $(uname -m) ;; esac)
19
+ export OS=$(uname | awk '{print tolower($0)}')
20
+ export OPERATOR_SDK_DL_URL=https://github.com/operator-framework/operator-sdk/releases/download/v1.27.0
21
+ curl -LO ${OPERATOR_SDK_DL_URL}/operator-sdk_${OS}_${ARCH}
22
+ chmod +x operator-sdk_${OS}_${ARCH} && sudo mv operator-sdk_${OS}_${ARCH} /usr/local/bin/operator-sdk
23
+
24
+
16
25
- name : Grab New Version Tag
17
26
id : tag_name
18
27
run : |
34
43
35
44
- name : Image Build
36
45
run : |
46
+ make build
47
+ make bundle
37
48
make image-build -e IMG=quay.io/project-codeflare/codeflare-operator:${SOURCE_TAG}
38
49
podman tag quay.io/project-codeflare/codeflare-operator:${SOURCE_TAG} quay.io/project-codeflare/codeflare-operator:latest
39
50
make bundle-build -e BUNDLE_IMG=quay.io/project-codeflare/codeflare-operator-bundle:${SOURCE_TAG}
You can’t perform that action at this time.
0 commit comments