Skip to content

Commit

Permalink
feat: update project name
Browse files Browse the repository at this point in the history
  • Loading branch information
virtyaluk committed Oct 29, 2022
1 parent 9a471af commit 700ec6b
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 13 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
🚀 FTP Upload GitHub action
🚀 FTP Mirror
===================================

Syncs a local folder with a remote folder over FTP using GitHub Workflow.
Expand All @@ -22,7 +22,7 @@ jobs:
- uses: actions/checkout@v2
# Here is the deployment action
- name: Upload from output to a remote server via FTP
uses: modern-dev/ftp-upload@latest
uses: modern-dev/ftp-mirror@latest
with:
server: ${{ secrets.FTP_SERVER }}
user: ${{ secrets.FTP_USERNAME }}
Expand Down Expand Up @@ -60,7 +60,7 @@ More information in the official site for [lftp - Manual pages][3]

## :green_book: License

[Licensed under the MIT license.](https://github.com/modern-dev/ftp-upload/blob/master/LICENSE)
[Licensed under the MIT license.](https://github.com/modern-dev/ftp-mirror/blob/master/LICENSE)

Copyright (c) 2022 Bohdan Shtepan

Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: 'FTP Upload'
name: 'FTP Mirror'
author: 'Bohdan Shtepan <[email protected]>'
description: >-
Copy all the files and folders via FTP from your Git project to your server in a specific path,
Expand Down
17 changes: 8 additions & 9 deletions entrypoint.sh
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
#!/bin/sh -e

echo "▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼"
echo "▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼"
echo ""
echo " __ _ _ _ "
echo " / _| |_ _ __ _ _ _ __ | | ___ __ _ __| |"
echo " | |_| __| '_ \ _____| | | | '_ \| |/ _ \ / _ |/ _ |"
echo " | _| |_| |_) |_____| |_| | |_) | | (_) | (_| | (_| |"
echo " |_| \__| .__/ \__,_| .__/|_|\___/ \__,_|\__,_|"
echo " |_| |_| "
echo " ___ _ _ "
echo " | _| |_ ___ ___ _____|_|___ ___ ___ ___ "
echo " | _| _| . |___| | | _| _| . | _|"
echo " |_| |_| | _| |_|_|_|_|_| |_| |___|_| "
echo " |_| "
echo ""
echo "▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲"
echo "▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲"
echo ""

echo "=== 📋 Environment variables ==="
Expand Down Expand Up @@ -141,5 +140,5 @@ fi

echo ""
echo "=============================="
echo "= 🚀 FTP UPLOADED FINISHED! ="
echo "= 🚀 FTP UPLOAD FINISHED! ="
echo "=============================="

0 comments on commit 700ec6b

Please sign in to comment.