Skip to content

Latest commit

 

History

History
20 lines (17 loc) · 338 Bytes

README.md

File metadata and controls

20 lines (17 loc) · 338 Bytes

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"