In recent commit #273d624 the build-vyos-image script was modified but lines 334-339 were identical to lines 361-366, which is causing the build to fail with the following error:
Traceback (most recent call last):
File "/__w/vyos-build/vyos-build/vyos-build/./build-vyos-image", line 366, in <module> os.chdir(defaults.BUILD_DIR)FileNotFoundError: [Errno 2] No such file or directory: 'build'
Error: Process completed with exit code 1.
Essentially the script will attempt twice to chdir to 'build' which succeeds the first time but fails the 2nd as it is already in the build directory.