We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9eff164 commit c22ffe8Copy full SHA for c22ffe8
build/cloudbuild.yaml
@@ -0,0 +1,18 @@
1
+# Build the module.
2
+steps:
3
+- name: gcr.io/cloud-builders/go:debian
4
+ entrypoint: bash
5
+ args:
6
+ - -c
7
+ - |
8
+ set -ex
9
+ IFS=- read str1 rev <<< "${_GIT_TAG}"
10
+ make build REV=${rev}
11
+ cp bin/csi-proxy.exe bin/csi-proxy${_GIT_TAG}.exe
12
+tags: ['jing']
13
+substitutions:
14
+ _GIT_TAG: '12345'
15
+artifacts:
16
+ objects:
17
+ location: 'gs://k8s-artifacts-csi'
18
+ paths: 'bin/csi-proxy${_GIT_TAG}.exe'
0 commit comments