Skip to content

Commit

Permalink
fix: Use credential instead of password in toml
Browse files Browse the repository at this point in the history
  • Loading branch information
PraxTube committed Oct 28, 2023
1 parent 49e7eae commit dc7a69e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
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 "credential = \"${TURN_SERVER_PASSWORD}\"" >> assets/turn-credentials.toml
- name: Build
run: |
Expand Down Expand Up @@ -81,7 +81,7 @@ jobs:
TURN_SERVER_PASSWORD: ${{ secrets.TURN_SERVER_PASSWORD }}
run: |
echo "username = `"$env:TURN_SERVER_USERNAME`"" > assets/turn-credentials.toml
echo "password = `"$env:TURN_SERVER_PASSWORD`"" >> assets/turn-credentials.toml
echo "credential = `"$env:TURN_SERVER_PASSWORD`"" >> assets/turn-credentials.toml
- name: Build
run: |
Expand Down

0 comments on commit dc7a69e

Please sign in to comment.