From bad7f96383a42acc3436161e4e75d28acee55333 Mon Sep 17 00:00:00 2001
From: Louis Capitanchik <contact@louiscap.co>
Date: Thu, 8 Dec 2022 19:38:12 +0000
Subject: [PATCH] Update binary name

---
 .gitlab-ci.yml       | 4 ++--
 game_core/Cargo.toml | 4 ++++
 2 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 2e61350..b6600e0 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -2,8 +2,8 @@ image: "r.lcr.gr/microhacks/bevy-builder:latest"
 
 variables:
   BINARY_FOLDER: game_core
-  BINARY_NAME: game_core
-  OUTPUT_NAME: TraderTales
+  BINARY_NAME: trader_tales
+  OUTPUT_NAME: trader_tales
 
 stages:
   - build
diff --git a/game_core/Cargo.toml b/game_core/Cargo.toml
index e114881..69a0773 100644
--- a/game_core/Cargo.toml
+++ b/game_core/Cargo.toml
@@ -5,6 +5,10 @@ edition = "2021"
 
 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
 
+[[bin]]
+path = "./src/main.rs"
+name = "trader_tales"
+
 [dependencies]
 bevy.workspace = true
 
-- 
GitLab