@@ -67,7 +67,7 @@ exports_files(["VERSION"])
67
67
68
68
genrule (
69
69
name = "native-artifact-mac-x86_64-dmg" ,
70
- outs = ["typedb-studio_3.4.0-rc0_amd64 .dmg" ], # replace with your actual output, e.g., .exe, .AppImage
70
+ outs = ["typedb-studio_3.4.0-rc1_amd64 .dmg" ], # replace with your actual output, e.g., .exe, .AppImage
71
71
cmd = """
72
72
cp src-tauri/target/release/bundle/dmg/*.dmg "$(OUTS)"
73
73
""" ,
@@ -77,7 +77,7 @@ genrule(
77
77
78
78
genrule (
79
79
name = "native-artifact-mac-arm64-dmg" ,
80
- outs = ["typedb-studio_3.4.0-rc0_aarch64 .dmg" ], # replace with your actual output, e.g., .exe, .AppImage
80
+ outs = ["typedb-studio_3.4.0-rc1_aarch64 .dmg" ], # replace with your actual output, e.g., .exe, .AppImage
81
81
cmd = """
82
82
cp src-tauri/target/release/bundle/dmg/*.dmg "$(OUTS)"
83
83
""" ,
@@ -87,7 +87,7 @@ genrule(
87
87
88
88
genrule (
89
89
name = "native-artifact-linux-arm64-deb" ,
90
- outs = ["typedb-studio_3.4.0-rc0_arm64 .deb" ], # replace with your actual output, e.g., .exe, .AppImage
90
+ outs = ["typedb-studio_3.4.0-rc1_arm64 .deb" ], # replace with your actual output, e.g., .exe, .AppImage
91
91
cmd = """
92
92
cp src-tauri/target/release/bundle/deb/*.deb "$(OUTS)"
93
93
""" ,
@@ -97,7 +97,7 @@ genrule(
97
97
98
98
genrule (
99
99
name = "native-artifact-linux-x86_64-deb" ,
100
- outs = ["typedb-studio_3.4.0-rc0_amd64 .deb" ], # replace with your actual output, e.g., .exe, .AppImage
100
+ outs = ["typedb-studio_3.4.0-rc1_amd64 .deb" ], # replace with your actual output, e.g., .exe, .AppImage
101
101
cmd = """
102
102
cp src-tauri/target/release/bundle/deb/*.deb "$(OUTS)"
103
103
""" ,
@@ -107,7 +107,7 @@ genrule(
107
107
108
108
genrule (
109
109
name = "native-artifact-windows-x86_64-msi" ,
110
- outs = ["typedb-studio_3.4.0-rc0_amd64 .msi" ], # replace with your actual output, e.g., .exe, .AppImage
110
+ outs = ["typedb-studio_3.4.0-rc1_amd64 .msi" ], # replace with your actual output, e.g., .exe, .AppImage
111
111
cmd = """
112
112
cp src-tauri/target/release/bundle/msi/*.msi "$(OUTS)"
113
113
""" ,
@@ -245,6 +245,7 @@ deploy_artifact(
245
245
version_file = ":VERSION" ,
246
246
visibility = ["//visibility:public" ],
247
247
target_compatible_with = constraint_mac_x86_64 ,
248
+ tags = ["manual" , "no-ide" ],
248
249
)
249
250
250
251
deploy_artifact (
@@ -257,6 +258,7 @@ deploy_artifact(
257
258
version_file = ":VERSION" ,
258
259
visibility = ["//visibility:public" ],
259
260
target_compatible_with = constraint_mac_arm64 ,
261
+ tags = ["manual" , "no-ide" ],
260
262
)
261
263
262
264
deploy_artifact (
@@ -269,6 +271,7 @@ deploy_artifact(
269
271
version_file = ":VERSION" ,
270
272
visibility = ["//visibility:public" ],
271
273
target_compatible_with = constraint_linux_x86_64 ,
274
+ tags = ["manual" , "no-ide" ],
272
275
)
273
276
274
277
deploy_artifact (
@@ -281,6 +284,7 @@ deploy_artifact(
281
284
version_file = ":VERSION" ,
282
285
visibility = ["//visibility:public" ],
283
286
target_compatible_with = constraint_linux_arm64 ,
287
+ tags = ["manual" , "no-ide" ],
284
288
)
285
289
286
290
deploy_artifact (
@@ -293,6 +297,7 @@ deploy_artifact(
293
297
version_file = ":VERSION" ,
294
298
visibility = ["//visibility:public" ],
295
299
target_compatible_with = constraint_win_x86_64 ,
300
+ tags = ["manual" , "no-ide" ],
296
301
)
297
302
298
303
label_flag (
0 commit comments