Skip to content

Commit

Permalink
Fixed syntax errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Baighasan committed Dec 31, 2024
1 parent a46ae4f commit c68becb
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,10 @@ jobs:

- name: Create SSH key file
# Write private key to .pem file
run: echo "${{ secrets.SPRING_BOOT_VM_PRIVATE_KEY }}" > private_key.pem
run: |
echo "${{ secrets.SPRING_BOOT_VM_PRIVATE_KEY }}" > private_key.pem
chmod 600 private_key.pem
- name: Deploy to Azure Virtual Machine
env:
SPRING_BOOT_VM_IP: ${{ secrets.SPRING_BOOT_VM_IP }}
Expand Down

0 comments on commit c68becb

Please sign in to comment.