Go to file
2022-10-17 10:41:08 +01:00
.github/workflows Allow files with spaces (#12) 2022-10-17 10:41:08 +01:00
tests Allow files with spaces (#12) 2022-10-17 10:41:08 +01:00
.editorconfig 🎉 create repo 2020-01-04 08:27:56 +00:00
action.yml Add flags argumen to allow modifiers on the cp command (#3) 2020-06-10 08:54:13 +01:00
Dockerfile add docker args 2020-01-04 10:29:34 +00:00
entrypoint.sh Allow files with spaces (#12) 2022-10-17 10:41:08 +01:00
README.md Fix small typo (#6) 2021-04-02 07:29:24 +01:00

Usage

copy files and artifacts via SSH as below.

name: copy files
on: [push]
jobs:

  build:
    name: Build
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@master
    - name: copy file
      uses: canastro/copy-file-action@master
      with:
        source: "tests/a.txt"
        target: "test-a.txt"