From 7ace521a80cae654be7b1b4c05a9520e5add4967 Mon Sep 17 00:00:00 2001 From: PraxTube Date: Sat, 28 Oct 2023 07:52:32 +0200 Subject: [PATCH] chore: Debug if release credentials work correctly --- .github/workflows/release.yaml | 8 ++++---- src/console/mod.rs | 1 + 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 2ab7de8..999fcd3 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -30,8 +30,8 @@ jobs: TURN_SERVER_USERNAME: ${{ secrets.TURN_SERVER_USERNAME }} TURN_SERVER_PASSWORD: ${{ secrets.TURN_SERVER_PASSWORD }} run: | - echo "username = \"${TURN_SERVER_USERNAME}\" > assets/turn-credentials.toml" - echo "password = \"${TURN_SERVER_PASSWORD}\" >> assets/turn-credentials.toml" + echo "username = \"${TURN_SERVER_USERNAME}\"" > assets/turn-credentials.toml + echo "password = \"${TURN_SERVER_PASSWORD}\"" >> assets/turn-credentials.toml - name: Build run: | @@ -80,8 +80,8 @@ jobs: TURN_SERVER_USERNAME: ${{ secrets.TURN_SERVER_USERNAME }} TURN_SERVER_PASSWORD: ${{ secrets.TURN_SERVER_PASSWORD }} run: | - echo username="%TURN_SERVER_USERNAME%" > assets/turn-credentials.toml - echo password="%TURN_SERVER_PASSWORD%" >> assets/turn-credentials.toml + echo "username = `"$env:TURN_SERVER_USERNAME`"" > assets/turn-credentials.toml + echo "password = `"$env:TURN_SERVER_PASSWORD`"" >> assets/turn-credentials.toml - name: Build run: | diff --git a/src/console/mod.rs b/src/console/mod.rs index c654337..ef5cafd 100644 --- a/src/console/mod.rs +++ b/src/console/mod.rs @@ -109,6 +109,7 @@ impl AceCommands { } } } + "dummy" => {} _ => {} } None