@@ -216,7 +216,7 @@ jobs:
216216 apt update && apt upgrade -y
217217 apt install curl -y
218218 - name : " Download test project"
219- run : curl -L -o project.zip https://github.com/mendix/Native-Mobile-Resources/archive/refs/heads/maestro-widgets .zip
219+ run : curl -L -o project.zip https://github.com/mendix/Native-Mobile-Resources/archive/refs/heads/main .zip
220220 - name : " Extract test project"
221221 uses : montudor/action-zip@0852c26906e00f8a315c704958823928d8018b28 # v1.0.0
222222 with :
@@ -233,26 +233,26 @@ jobs:
233233 run : |
234234 if compgen -G 'resources/pluggableWidgets/**/dist/*/*.mpk' > /dev/null; then
235235 for oldPath in resources/pluggableWidgets/**/dist/*/*.mpk; do
236- newPath=Native-Mobile-Resources-maestro-widgets /widgets/$(basename $oldPath)
236+ newPath=Native-Mobile-Resources-main /widgets/$(basename $oldPath)
237237 mv -f $oldPath $newPath
238238 done
239- mx update-widgets --loose-version-check Native-Mobile-Resources-maestro-widgets /NativeComponentsTestProject.mpr
239+ mx update-widgets --loose-version-check Native-Mobile-Resources-main /NativeComponentsTestProject.mpr
240240 fi
241241 - name : " Move mobile-resources"
242242 shell : bash
243243 run : |
244244 if compgen -G 'resources/jsActions/mobile-resources-native/*' > /dev/null; then
245- mv -f resources/jsActions/mobile-resources-native/* Native-Mobile-Resources-maestro-widgets /javascriptsource/nativemobileresources/actions/
245+ mv -f resources/jsActions/mobile-resources-native/* Native-Mobile-Resources-main /javascriptsource/nativemobileresources/actions/
246246 fi
247247 - name : " Move nanoflow-actions"
248248 shell : bash
249249 run : |
250250 if compgen -G 'resources/jsActions/mobile-resources-native/*' > /dev/null; then
251- mv -f resources/jsActions/nanoflow-actions-native/* Native-Mobile-Resources-maestro-widgets /javascriptsource/nanoflowcommons/actions/
251+ mv -f resources/jsActions/nanoflow-actions-native/* Native-Mobile-Resources-main /javascriptsource/nanoflowcommons/actions/
252252 fi
253253 - name : " Force rebuild test project"
254254 run : |
255- mxbuild -o automation.mda --loose-version-check Native-Mobile-Resources-maestro-widgets /NativeComponentsTestProject.mpr
255+ mxbuild -o automation.mda --loose-version-check Native-Mobile-Resources-main /NativeComponentsTestProject.mpr
256256 - name : " Upload MDA"
257257 uses : actions/upload-artifact@v4
258258 with :
0 commit comments