From 7585482de67e23f5621f687c61e2721eec2811cc Mon Sep 17 00:00:00 2001 From: shockrah Date: Sat, 28 Sep 2024 14:23:43 -0700 Subject: [PATCH] Fixing example in readme --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 7c99c73..c2aa2da 100644 --- a/README.md +++ b/README.md @@ -32,11 +32,11 @@ It is recommended to pass all sensitive values through `secrets` name: Copy single file uses: tempersama/rsync-action@1.4 with: - host: ${{ secrets.host }} - source: html/ - destination: /opt/nginx/website.com - username: ${{ secrets.username }} - key: ${{ secrets.SERVER_KEY }} - port: 2222 + host: ${{ secrets.host }} + source: html/ + destination: /opt/nginx/website.com + username: ${{ secrets.username }} + key: ${{ secrets.SERVER_KEY }} + port: 2222 ```