Skip to content

Commit

Permalink
🏃 fix gsutil push issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Mengqi Yu committed Apr 8, 2019
1 parent 2ea629b commit 6431374
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build/cloudbuild_snapshot.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,6 @@ steps:
env:
- 'KUBERNETES_VERSION=1.13.1'
- name: 'gcr.io/cloud-builders/gsutil'
args: ['-h', 'Content-Type:application/gzip', 'cp', '-a', 'public-read', 'dist/kubebuilder_master_linux_amd64.tar.gz', 'gs://kubebuilder-release/kubebuilder_master_linux_amd64.tar.gz']
args: ['-h', 'Content-Type:application/gzip', 'cp', 'dist/kubebuilder_master_linux_amd64.tar.gz', 'gs://kubebuilder-release/kubebuilder_master_linux_amd64.tar.gz']
- name: 'gcr.io/cloud-builders/gsutil'
args: ['-h', 'Content-Type:application/gzip', 'cp', '-a', 'public-read', 'dist/kubebuilder_master_darwin_amd64.tar.gz', 'gs://kubebuilder-release/kubebuilder_master_darwin_amd64.tar.gz']
args: ['-h', 'Content-Type:application/gzip', 'cp', 'dist/kubebuilder_master_darwin_amd64.tar.gz', 'gs://kubebuilder-release/kubebuilder_master_darwin_amd64.tar.gz']

0 comments on commit 6431374

Please sign in to comment.