mirror of
https://github.com/canastro/copy-action.git
synced 2024-11-23 10:43:50 +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
|
uses: canastro/copy-file-action@master
|
||||||
with:
|
with:
|
||||||
source: "tests/a.txt"
|
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'
|
description: 'Copy local files'
|
||||||
author: 'Ricardo Canastro'
|
author: 'Ricardo Canastro'
|
||||||
inputs:
|
inputs:
|
||||||
|
flags:
|
||||||
|
description: 'Flags to use on the cp command. See "man cp" or "cp --help" for more details'
|
||||||
|
required: false
|
||||||
|
default: ''
|
||||||
source:
|
source:
|
||||||
description: 'Source file'
|
description: 'Source file'
|
||||||
required: true
|
required: true
|
||||||
@ -12,6 +16,7 @@ runs:
|
|||||||
using: 'docker'
|
using: 'docker'
|
||||||
image: 'Dockerfile'
|
image: 'Dockerfile'
|
||||||
args:
|
args:
|
||||||
|
- ${{inputs.flags}}
|
||||||
- ${{inputs.source}}
|
- ${{inputs.source}}
|
||||||
- ${{inputs.target}}
|
- ${{inputs.target}}
|
||||||
branding:
|
branding:
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
#!/bin/sh -l
|
#!/bin/sh -l
|
||||||
|
|
||||||
cp $1 $2
|
cp $1 $2 $3
|
Loading…
Reference in New Issue
Block a user