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