File tree 1 file changed +3
-19
lines changed
1 file changed +3
-19
lines changed Original file line number Diff line number Diff line change 28
28
description : number of pairs per image
29
29
default : ' 1'
30
30
options : ['3','2','1']
31
-
32
- # Must duplicate inputs for workflow_call (https://github.com/orgs/community/discussions/39357)
33
- workflow_call :
34
- inputs :
35
- cloud_cover :
36
- type : string
37
- required : true
38
- start_month :
39
- type : string
40
- required : true
41
- stop_month :
42
- type : string
43
- required : true
44
- npairs :
45
- type : string
46
- required : true
47
-
31
+
48
32
jobs :
49
33
# The output of this job is a JSON mapping for a matrix job
50
34
S2_search :
51
35
runs-on : ubuntu-latest
52
36
outputs :
53
- BURST_IDS : ${{ steps.S2_search.outputs.IMAGE_DATES }}
37
+ IMG_IDS : ${{ steps.S2_search.outputs.IMAGE_DATES }}
54
38
MATRIX : ${{ steps.S2_search.outputs.MATRIX_PARAMS_COMBINATIONS }}
55
39
defaults :
56
40
run :
65
49
cache-environment : true
66
50
environment-file : glacier_image_correlation/environment.yml
67
51
68
- - name : Search aws for S2 imagery
52
+ - name : Search aws for S2 Imagery
69
53
id : S2_search
70
54
run : |
71
55
python glacier_image_correlation/s2_search.py ${{ inputs.cloud_cover }} ${{ inputs.start_month }} ${{ inputs.stop_month }} ${{ inputs.npairs }}
You can’t perform that action at this time.
0 commit comments