From 187d2aa6551bf8f834214ab213f0f8353f4a95aa Mon Sep 17 00:00:00 2001 From: Danil Date: Sun, 23 Jun 2024 20:54:36 +0700 Subject: [PATCH] =?UTF-8?q?=D0=98=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=B5=D0=BD=D0=B8=D0=B5=20=D0=BE=D1=88=D0=B8=D0=B1=D0=BA=D0=B8?= =?UTF-8?q?=20=D0=BA=D0=BE=D0=BC=D0=BF=D0=B8=D0=BB=D1=8F=D1=86=D0=B8=D0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/build.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index 7b51cae..94fac91 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -40,12 +40,12 @@ jobs: if: matrix.platform == 'ubuntu-latest' run: | touch src-tauri/src/config.rs - echo "pub(crate) static ENC_KEY: &str = '${{secrets.HASH_KEY}}';" > src-tauri/src/config.rs + echo 'pub(crate) static ENC_KEY: &str = "${{secrets.HASH_KEY}}";' > src-tauri/src/config.rs ls -l src-tauri/src - name: Check files (Windows) if: matrix.platform == 'windows-latest' run: | - New-Item -Path src-tauri/src -name "config.rs" -Value "pub(crate) static ENC_KEY: &str = '${{secrets.HASH_KEY}}';" + New-Item -Path src-tauri/src -name "config.rs" -Value 'pub(crate) static ENC_KEY: &str = "${{secrets.HASH_KEY}}";' dir src-tauri/src - name: Install Rust stable