-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add settings and guide validation (#3)
Signed-off-by: Daniel Castaño Sánchez <danielcastanosanchez@icloud.com> Signed-off-by: Sergio Castaño Sánchez <sergiocastanosanchez@icloud.com> Co-authored-by: Daniel Castaño Sánchez <danielcastanosanchez@icloud.com> Co-authored-by: Sergio Castaño Sánchez <sergiocastanosanchez@icloud.com>
- Loading branch information
1 parent
2c79a80
commit 7f299c4
Showing
2 changed files
with
61 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,17 @@ | ||
name: Landscape2 validate action | ||
|
||
inputs: | ||
data_file: | ||
description: 'Landscape data file local path' | ||
target_kind: | ||
description: 'Kind of file to validate' | ||
required: true | ||
target_path: | ||
description: 'Path of file to validate' | ||
required: true | ||
|
||
runs: | ||
using: 'docker' | ||
image: 'docker://public.ecr.aws/g6m3a0y9/landscape2' | ||
entrypoint: landscape2 | ||
entrypoint: /landscape2-validate.sh | ||
args: | ||
- validate | ||
- data | ||
- --data-file | ||
- ${{ inputs.data_file }} | ||
- ${{ inputs.target_kind }} | ||
- ${{ inputs.target_path }} |