@@ -67,7 +67,7 @@ exports_files(["VERSION"])
6767
6868genrule (
6969 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
7171 cmd = """
7272 cp src-tauri/target/release/bundle/dmg/*.dmg "$(OUTS)"
7373 """ ,
@@ -77,7 +77,7 @@ genrule(
7777
7878genrule (
7979 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
8181 cmd = """
8282 cp src-tauri/target/release/bundle/dmg/*.dmg "$(OUTS)"
8383 """ ,
@@ -87,7 +87,7 @@ genrule(
8787
8888genrule (
8989 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
9191 cmd = """
9292 cp src-tauri/target/release/bundle/deb/*.deb "$(OUTS)"
9393 """ ,
@@ -97,7 +97,7 @@ genrule(
9797
9898genrule (
9999 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
101101 cmd = """
102102 cp src-tauri/target/release/bundle/deb/*.deb "$(OUTS)"
103103 """ ,
@@ -107,7 +107,7 @@ genrule(
107107
108108genrule (
109109 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
111111 cmd = """
112112 cp src-tauri/target/release/bundle/msi/*.msi "$(OUTS)"
113113 """ ,
@@ -245,6 +245,7 @@ deploy_artifact(
245245 version_file = ":VERSION" ,
246246 visibility = ["//visibility:public" ],
247247 target_compatible_with = constraint_mac_x86_64 ,
248+ tags = ["manual" , "no-ide" ],
248249)
249250
250251deploy_artifact (
@@ -257,6 +258,7 @@ deploy_artifact(
257258 version_file = ":VERSION" ,
258259 visibility = ["//visibility:public" ],
259260 target_compatible_with = constraint_mac_arm64 ,
261+ tags = ["manual" , "no-ide" ],
260262)
261263
262264deploy_artifact (
@@ -269,6 +271,7 @@ deploy_artifact(
269271 version_file = ":VERSION" ,
270272 visibility = ["//visibility:public" ],
271273 target_compatible_with = constraint_linux_x86_64 ,
274+ tags = ["manual" , "no-ide" ],
272275)
273276
274277deploy_artifact (
@@ -281,6 +284,7 @@ deploy_artifact(
281284 version_file = ":VERSION" ,
282285 visibility = ["//visibility:public" ],
283286 target_compatible_with = constraint_linux_arm64 ,
287+ tags = ["manual" , "no-ide" ],
284288)
285289
286290deploy_artifact (
@@ -293,6 +297,7 @@ deploy_artifact(
293297 version_file = ":VERSION" ,
294298 visibility = ["//visibility:public" ],
295299 target_compatible_with = constraint_win_x86_64 ,
300+ tags = ["manual" , "no-ide" ],
296301)
297302
298303label_flag (
0 commit comments