mirror of
https://github.com/canastro/copy-action.git
synced 2024-11-23 06:23:53 +08:00
Add flags argumen to allow modifiers on the cp command (#3)
This commit is contained in:
parent
7ddff6fc15
commit
eae666fc01
8
.github/workflows/main.yml
vendored
8
.github/workflows/main.yml
vendored
@ -10,4 +10,10 @@ jobs:
|
||||
uses: canastro/copy-file-action@master
|
||||
with:
|
||||
source: "tests/a.txt"
|
||||
target: "test-a.txt"
|
||||
target: "test-a.txt"
|
||||
- name: copy file with args
|
||||
uses: canastro/copy-file-action@master
|
||||
with:
|
||||
source: "tests/a.txt"
|
||||
target: "test-a.txt"
|
||||
flags: "-f"
|
||||
|
@ -2,6 +2,10 @@ name: 'Copy file'
|
||||
description: 'Copy local files'
|
||||
author: 'Ricardo Canastro'
|
||||
inputs:
|
||||
flags:
|
||||
description: 'Flags to use on the cp command. See "man cp" or "cp --help" for more details'
|
||||
required: false
|
||||
default: ''
|
||||
source:
|
||||
description: 'Source file'
|
||||
required: true
|
||||
@ -12,6 +16,7 @@ runs:
|
||||
using: 'docker'
|
||||
image: 'Dockerfile'
|
||||
args:
|
||||
- ${{inputs.flags}}
|
||||
- ${{inputs.source}}
|
||||
- ${{inputs.target}}
|
||||
branding:
|
||||
|
@ -1,3 +1,3 @@
|
||||
#!/bin/sh -l
|
||||
|
||||
cp $1 $2
|
||||
cp $1 $2 $3
|
Loading…
Reference in New Issue
Block a user