Skip to content

Commit

Permalink
chore: Debug if release credentials work correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
PraxTube committed Oct 28, 2023
1 parent 8a0d6f3 commit 7ace521
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down Expand Up @@ -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: |
Expand Down
1 change: 1 addition & 0 deletions src/console/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ impl AceCommands {
}
}
}
"dummy" => {}
_ => {}
}
None
Expand Down

0 comments on commit 7ace521

Please sign in to comment.