We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d6128d0 commit 6e6edeeCopy full SHA for 6e6edee
.github/workflows/pr.yml
@@ -55,7 +55,7 @@ jobs:
55
- name: 'Populate auth file with DEVHUB_SFDX_URL secret'
56
shell: bash
57
run: |
58
- echo ${{ secrets.DEVHUB_SFDX_URL }} > ./DEVHUB_SFDX_URL.txt
+ echo "${{ secrets.DEVHUB_SFDX_URL }}" > ./DEVHUB_SFDX_URL.txt
59
secretFileSize=$(wc -c "./DEVHUB_SFDX_URL.txt" | awk '{print $1}')
60
if [ $secretFileSize == 1 ]; then
61
echo "Missing DEVHUB_SFDX_URL secret. Is this workflow running on a fork?";
0 commit comments