Skip to content

Commit 6e6edee

Browse files
committed
fix escaping URL
1 parent d6128d0 commit 6e6edee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
- name: 'Populate auth file with DEVHUB_SFDX_URL secret'
5656
shell: bash
5757
run: |
58-
echo ${{ secrets.DEVHUB_SFDX_URL }} > ./DEVHUB_SFDX_URL.txt
58+
echo "${{ secrets.DEVHUB_SFDX_URL }}" > ./DEVHUB_SFDX_URL.txt
5959
secretFileSize=$(wc -c "./DEVHUB_SFDX_URL.txt" | awk '{print $1}')
6060
if [ $secretFileSize == 1 ]; then
6161
echo "Missing DEVHUB_SFDX_URL secret. Is this workflow running on a fork?";

0 commit comments

Comments
 (0)