An open API service indexing awesome lists of open source software.

https://github.com/canastro/copy-action


https://github.com/canastro/copy-action

Last synced: 11 months ago
JSON representation

Awesome Lists containing this project

README

          

## Usage

copy files and artifacts via SSH as below.

```yaml
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"
```