copy/README.md

21 lines
338 B
Markdown
Raw Normal View History

2020-01-04 16:27:56 +08:00
## Usage
2021-04-02 14:29:24 +08:00
copy files and artifacts via SSH as below.
2020-01-04 16:27:56 +08:00
```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"
```