Skip to content

Commit

Permalink
FIx missing quote in echo ssh key command
Browse files Browse the repository at this point in the history
  • Loading branch information
hoang-rio committed Dec 25, 2023
1 parent 15f9d83 commit 4cf8219
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Create deploy key file
run: |
mkdir ${{env.SSH_KEY_FILE_DIR}}
echo ${{secrets.SSH_DEPLOY_KEY}} > ${{env.SSH_KEY_FILE_PATH}}
echo "${{secrets.SSH_DEPLOY_KEY}}" > ${{env.SSH_KEY_FILE_PATH}}
chmod 600 ${{env.SSH_KEY_FILE_PATH}}
- name: Deploy to Main Server
Expand Down

0 comments on commit 4cf8219

Please sign in to comment.