File tree 2 files changed +6
-5
lines changed
2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -212,9 +212,7 @@ upload-container-image:
212
212
ifndef version
213
213
$(error version variable must be set)
214
214
else
215
- docker build --platform linux/arm64,linux/amd64 -t gcr.io/gadget-core-production/dateilager:$(version) -t gcr.io/gadget-core-production/dateilager:latest .
216
- docker push gcr.io/gadget-core-production/dateilager:$(version)
217
- docker push gcr.io/gadget-core-production/dateilager:latest
215
+ docker build --platform linux/arm64,linux/amd64 --push -t gcr.io/gadget-core-production/dateilager:$(version) -t gcr.io/gadget-core-production/dateilager:latest .
218
216
endif
219
217
220
218
upload-prerelease-container-image :
Original file line number Diff line number Diff line change 37
37
callPackage = pkgs . newScope ( flake . packages // { inherit lib callPackage ; } ) ;
38
38
in
39
39
{
40
- packages = {
40
+ packages = {
41
41
## DateiLager development scripts
42
42
43
43
clean = callPackage ./development/nix/scripts/clean.nix { } ;
54
54
55
55
postgresql = pkgs . postgresql_14 ;
56
56
57
+ google-cloud-sdk = pkgs . google-cloud-sdk ;
58
+
57
59
golangci-lint = pkgs . golangci-lint ;
58
60
59
61
glibcLocales = pkgs . glibcLocales ;
77
79
flake . packages . clean
78
80
flake . packages . golangci-lint
79
81
flake . packages . glibcLocales
82
+ flake . packages . google-cloud-sdk
80
83
git
81
84
protobuf
82
85
protoc-gen-go
91
94
92
95
# silence ginko deprecations -- they come from the csi test suite that we don't control
93
96
export ACK_GINKGO_DEPRECATIONS=1.16.5
94
- '' ;
97
+ '' ;
95
98
} ;
96
99
}
97
100
) ) ) ;
You can’t perform that action at this time.
0 commit comments