@@ -110,14 +110,14 @@ jobs:
110110 name: ${{ steps.set-artifact-name.outputs.base }}
111111 attempt_limit : 20
112112 attempt_delay : 10000
113- if : ${{ inputs.flavour == 'mods ' }}
113+ if : ${{ inputs.flavour == 'base ' }}
114114
115115 - name : " [Artifact Load] Import base"
116116117117 with :
118118 command : |
119119 make load INFILE=${{ steps.set-artifact-name.outputs.base }}
120- if : ${{ inputs.flavour == 'mods ' }}
120+ if : ${{ inputs.flavour == 'base ' }}
121121
122122 # ##
123123 # ## Download and import mods
@@ -130,14 +130,14 @@ jobs:
130130 name: ${{ steps.set-artifact-name.outputs.mods }}
131131 attempt_limit : 20
132132 attempt_delay : 10000
133- if : ${{ inputs.flavour == 'prod ' }}
133+ if : ${{ inputs.flavour == 'mods ' }}
134134
135135 - name : " [Artifact Load] Import mods"
136136137137 with :
138138 command : |
139139 make load INFILE=${{ steps.set-artifact-name.outputs.mods }}
140- if : ${{ inputs.flavour == 'prod ' }}
140+ if : ${{ inputs.flavour == 'mods ' }}
141141
142142 # ##
143143 # ## Download and import prod
@@ -150,13 +150,33 @@ jobs:
150150 name: ${{ steps.set-artifact-name.outputs.prod }}
151151 attempt_limit : 20
152152 attempt_delay : 10000
153- if : ${{ inputs.flavour == 'work ' }}
153+ if : ${{ inputs.flavour == 'prod ' }}
154154
155155 - name : " [Artifact Load] Import prod"
156156157157 with :
158158 command : |
159159 make load INFILE=${{ steps.set-artifact-name.outputs.prod }}
160+ if : ${{ inputs.flavour == 'prod' }}
161+
162+ # ##
163+ # ## Download and import work
164+ # ##
165+ - name : " [Artifact Load] Download work"
166+ 167+ with :
168+ action : actions/download-artifact@v3
169+ with : |
170+ name: ${{ steps.set-artifact-name.outputs.work }}
171+ attempt_limit : 20
172+ attempt_delay : 10000
173+ if : ${{ inputs.flavour == 'work' }}
174+
175+ - name : " [Artifact Load] Import work"
176+ 177+ with :
178+ command : |
179+ make load INFILE=${{ steps.set-artifact-name.outputs.work }}
160180 if : ${{ inputs.flavour == 'work' }}
161181
162182
0 commit comments