https://github.com/canastro/copy-action
https://github.com/canastro/copy-action
Last synced: 11 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/canastro/copy-action
- Owner: canastro
- Created: 2020-01-04T08:27:35.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-05-31T12:54:20.000Z (about 3 years ago)
- Last Synced: 2025-08-01T13:31:32.082Z (11 months ago)
- Language: Dockerfile
- Size: 5.86 KB
- Stars: 28
- Watchers: 0
- Forks: 10
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
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"
```