Skip to content

Commit a76a942

Browse files
committedMar 3, 2024·
test
1 parent ee74a1d commit a76a942

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed
 

‎.github/workflows/deploy.yaml

+3-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,9 @@ jobs:
2121
aws-region: us-east-1 # Replace with your region
2222

2323
- name: Set up SSH key
24-
run: echo "${{ secrets.PEM_FILE }}" > key.pem && chmod 600 key.pem
24+
run: |
25+
echo "${{ secrets.PEM_FILE }}" > key.pem
26+
chmod 600 key.pem
2527
2628
- name: Deploy application
2729
run: |

0 commit comments

Comments
 (0)
Please sign in to comment.