Skip to content

Commit

Permalink
fix: allow excluding of files
Browse files Browse the repository at this point in the history
  • Loading branch information
amfage committed Mar 25, 2024
1 parent d3db2c3 commit 6a6492b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion workflows/raster/copy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,8 @@ spec:
value: 's3://linz-imagery-staging/test/sample_target/'
- name: include
value: '\.tiff?$|\.json$|\.tfw$|/capture-area\.geojson$'
- name: exclude
value: ''
- name: copy_option
value: '--no-clobber'
enum:
Expand All @@ -87,6 +89,7 @@ spec:
parameters:
- name: source
- name: include
- name: exclude
- name: group
- name: group_size
dag:
Expand All @@ -104,7 +107,7 @@ spec:
- name: include
value: '{{inputs.parameters.include}}'
- name: exclude
value: ''
value: '{{inputs.parameters.exclude}}'
- name: group
value: '{{inputs.parameters.group}}'
- name: group_size
Expand Down

0 comments on commit 6a6492b

Please sign in to comment.