curl: (67) Access denied: 530 - The process '/usr/bin/git' failed with exit code 5
See original GitHub issueBug Description
I’m Erik, a novice web developer. I want to get GitHub to upload my changed files to the FTP server after every push. I created this issue because, after the push, I get this error message under the action tab. May I have a hand?
My Action Config
on: push
name: FTP feltöltés
jobs:
FTP-Deploy-Action:
name: FTP-Deploy-Action
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.1.0
with:
fetch-depth: 2
- name: FTP-Deploy-Action
uses: SamKirkland/FTP-Deploy-Action@3.1.1
with:
ftp-server: ${{ secrets.FTP_SERVER }}
ftp-username: ${{ secrets.FTP_USERNAME }}
ftp-password: ${{ secrets.FTP_PASSWORD }}
My Action Log
Check failure on line 1 in .github
@github-actions
github-actions
/ FTP-Deploy-Action
.github#L1
The process '/usr/bin/git' failed with exit code 5
#=#=-# #
-#O#- # #
-=#=# # #
-=O#- # # #
-=O=# # # #
-=O=-# # # #
-=O=- # # # #
-=O=- # # # #
curl: (67) Access denied: 530
Wed Jul 1 12:21:04 UTC 2020: Check if ftp://***:***@ftpx.forpsi.com is accessible.
#=#=#
##O#- #
##O=# #
#=#=-# #
-#O#- # #
-=#=# # #
-=O#- # # #
-=O=# # # #
-=O=-# # # #
-=O=- # # # #
curl: (67) Access denied: 530
Wed Jul 1 12:21:10 UTC 2020: fatal: Can't access remote 'ftp://***:***@ftpx.forpsi.com', exiting...
##[error]The process '/usr/bin/git' failed with exit code 5
Issue Analytics
- State:
- Created 3 years ago
- Reactions:2
- Comments:9 (2 by maintainers)
Top Results From Across the Web
curl: (67) Access denied: 530 - The process '/usr/bin/git' failed ...
I created this issue because, after the push, I get this error message under the action tab. May I have a hand? My...
Read more >How to fix curl error 67 - Bobcares
curl: (67) Access denied: 530. The common reasons for this error include: Incorrect server name, username, or password combination.
Read more >the process '/usr/bin/git' failed with exit code 5 - You.com
The process '/usr/bin/git' failed with exit code 5` when using Gtihub . ... curl: (67) Access denied: 530 - The process '/usr/bin/git' failed...
Read more >Getting `The process '/usr/bin/git' failed with exit code 5` when ...
I found I had to update the ftp-server value by adding the protocol (sftp://) and port number (22). So:.
Read more >Unable to get yum repo from server to Client using ftp service
Curl error (67): Login denied for ftp://192.168.253.134/pub/AppStream/repodata/repomd.xml [Access denied: 530] Error: Failed to download ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Error 530 is a FTP access denied issue. It means your username or password entered is not correct (verify you have no special characters in the username/password). Or your account doesn’t have access to connect.
Can you verify you don’t have special characters in your username/password and you can successfully connect with another ftp client (filezilla, your host also has a online login page)
When I upgrade the version (4.0.0) I receive the below error. Error: Input required and not supplied: server Before the upgrade of the version (initially I had the version 3.1.1), the error was The process ‘/usr/bin/git’ failed with exit code 5 Any idea?