Skip to content

Commit

Permalink
fix: Use ' instead of " to write newline
Browse files Browse the repository at this point in the history
  • Loading branch information
PraxTube committed Oct 27, 2023
1 parent 66c6ab1 commit 55045ae
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 @@ -30,7 +30,7 @@ jobs:
TURN_SERVER_USERNAME: ${{ secrets.TURN_SERVER_USERNAME }}
TURN_SERVER_PASSWORD: ${{ secrets.TURN_SERVER_PASSWORD }}
run: |
echo "username = \"${TURN_SERVER_USERNAME}\"\npassword = \"${TURN_SERVER_PASSWORD}\"" > assets/turn-credentials.toml
echo -e 'username = \"${TURN_SERVER_USERNAME}\"\npassword = \"${TURN_SERVER_PASSWORD}\"' > assets/turn-credentials.toml
- name: Build
run: |
Expand Down Expand Up @@ -79,7 +79,7 @@ jobs:
TURN_SERVER_USERNAME: ${{ secrets.TURN_SERVER_USERNAME }}
TURN_SERVER_PASSWORD: ${{ secrets.TURN_SERVER_PASSWORD }}
run: |
echo "username = \"${TURN_SERVER_USERNAME}\"\npassword = \"${TURN_SERVER_PASSWORD}\"" > assets/turn-credentials.toml
echo -e 'username = \"${TURN_SERVER_USERNAME}\"\npassword = \"${TURN_SERVER_PASSWORD}\"' > assets/turn-credentials.toml
- name: Build
run: |
Expand Down

0 comments on commit 55045ae

Please sign in to comment.