drone-scp icon indicating copy to clipboard operation
drone-scp copied to clipboard

Copy files and artifacts via SSH using a binary, docker or Drone CI.

Results 42 drone-scp issues
Sort by recently updated
recently updated
newest added

Closing https://github.com/appleboy/scp-action/issues/83 and reopening here, because I believe it's an issue with drone-scp expecting GNU tar on the other end, which isn't always the case (OpenBSD). ``` untar file xpkHVyWJzG.tar...

When trying to perform pretty basic upload I'm receiving "Process exited with status 1" However folder c:\Application\CDTEST\APK\artifacts is created. Config is: deploy: runs-on: ubuntu-latest strategy: matrix: dotnet-version: ['6.0.x' ] project-id:...

in the Copy files to server sections, the files are copied successfully but with an error shown below tar all files into /tmp/635380544/KwUcbibuAf.tar scp file to server. create folder C:\wamp64\www\siu...

I'm using Tekton and trying to scp to a server using the image `docker.io/appleboy/drone-scp:latest` ```yaml - name: upload-script image: docker.io/appleboy/drone-scp:latest #tag: 1.6.1 script: | echo "$(params.SSH_SCRIPT)" > script.sh echo "$SSH_PUBLIC_KEY"...

I'm trying to exclude a few files and folders from being uploaded but it's not working. - README.md - .git These are the configs I've tried ```yml - !.git -...

I execute the following code to put all the files under /root/Web/ under /var/www/ , and I finally get /var/www /root/Web/ drone-scp --host **** --port 2222 --username ${{ secrets.SSH_USERNAME }}...

win10 tar all files into C:\Users\47013\AppData\Local\Temp\927348223\RTpNoJYgNG.tar tar: no files or directories specified exit status 1

Below is the snippet of .drone.yml, I am using for drone-scp. I have added secrets SSH_USERNAME,SSH_PASSWORD in Drone UI - Secret section. Please assist here, I am stuck here. ```...

error copy file to dest: 192.168.0.2, error message: ssh: handshake failed: ssh: unable to authenticate, attempted methods [none password], no supported methods remain

- name: scp image: appleboy/drone-scp settings: host: - ****.***.***.01 - ****.***.***.02 username: root password: from_secret: - ssh_password - ssh_password1 port: 22 target: - /home/web_temp source: - "*" rm: true when:...