You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Bug Description
It was running perfectly some time back, but now it is givingan error in the sync process.
My Action Config
# This is a basic workflow to help you get started with Actionsname: CI Development# Controls when the workflow will runon:
# Triggers the workflow on push or pull request events but only for the "main" branchpush:
branches: [ "development" ]# Allows you to run this workflow manually from the Actions tabworkflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in paralleljobs:
# This workflow contains a single job called "build"build:
# The type of runner that the job will run onruns-on: ubuntu-latest# Steps represent a sequence of tasks that will be executed as part of the jobsteps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: 🚚 Get latest codeuses: actions/checkout@v4# Runs a set of commands using the runners shell
- name: 📂 Sync filesuses: SamKirkland/FTP-Deploy-Action@v4.3.5with:
server: ${{ secrets.FTP_HOST_TEST }}username: ${{ secrets.FTP_USERNAME_TEST }}password: ${{ secrets.FTP_PASSWORD_TEST }}server-dir: ${{ secrets.FTP_SERVER_DIRECTORY_TEST }}exclude: | **/calibrationdata/** **/uploads/** **/nbproject/** **/vendor/** **/calibrationdata/** **/composer.lock* **/.git/** **/conn.php* **/viewPublicCertificate.php*# !!!!!!! TODO Fill Out !!!!!!!
My Action Log
----------------------------------------------------------------
-------------- 🔥🔥🔥 an error occurred 🔥🔥🔥 --------------
----------------------------------------------------------------
----------------------------------------------------------------
---------------------- full error below ----------------------
----------------------------------------------------------------
FTPError: 553 Can't open that file: No such file or directory
at FTPContext._onControlSocketData (/home/runner/work/_actions/SamKirkland/FTP-Deploy-Action/v4.3.5/dist/index.js:5263:39)
at Socket.<anonymous> (/home/runner/work/_actions/SamKirkland/FTP-Deploy-Action/v4.3.5/dist/index.js:5107:44)
at Socket.emit (node:events:524:28)
at addChunk (node:internal/streams/readable:561:12)
at readableAddChunkPushByteMode (node:internal/streams/readable:512:3)
at Readable.push (node:internal/streams/readable:392:5)
at TCP.onStreamRead (node:internal/stream_base_commons:191:23) {
code: 553
}
Error: FTPError: 553 Can't open that file: No such file or directory
The text was updated successfully, but these errors were encountered:
Bug Description
It was running perfectly some time back, but now it is givingan error in the sync process.
My Action Config
My Action Log
The text was updated successfully, but these errors were encountered: