From 7f37752caa3d7bc7a4eb874ab307df25659f8922 Mon Sep 17 00:00:00 2001
From: ConfiG <cgytrus@cgyt.ru>
Date: Fri, 21 Jun 2024 21:09:27 +0300
Subject: [PATCH] fix target platforms in ci

---
 .github/workflows/build.yml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 1df1883..16f4c2a 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -21,14 +21,14 @@ jobs:
           out_paths: './target/release/geode.exe'
           static: ''
           id: win
-          target: stable-x86_64-pc-windows-msvc
+          target: x86_64-pc-windows-msvc
 
         - name: "macOS"
           os: macos-12
           out_paths: './target/release/geode'
           static: 'export OPENSSL_STATIC=1'
           id: mac
-          target: stable-x86_64-apple-darwin
+          target: x86_64-apple-darwin
 
         - name: "linux"
           os: ubuntu-latest
@@ -36,7 +36,7 @@ jobs:
           # some stupid old ubuntu versions cant install libssl3
           static: 'export OPENSSL_STATIC=1'
           id: linux
-          target: stable-x86_64-unknown-linux-gnu
+          target: x86_64-unknown-linux-gnu
 
     name: ${{ matrix.config.name }}
     runs-on: ${{ matrix.config.os }}