Answered by
jhuckaby
Apr 14, 2026
Replies: 1 comment 2 replies
|
Are you telling xySat to actually upload the file as part of your job output? See: https://docs.xyops.io/plugins/output-files You have to specifically tell it to attach files to the job. Try something like: echo '{ "xy":1, "files": ["filelist.json"] }'Or use a wildcard for all files in the job dir: echo '{ "xy":1, "files": ["*"] }'This step is required because you may have temporary or intermediate files that you don't want uploaded, and we don't want it to upload input files either. |
2 replies
Answer selected by
greenaar
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment


Are you telling xySat to actually upload the file as part of your job output?
See: https://docs.xyops.io/plugins/output-files
You have to specifically tell it to attach files to the job. Try something like:
Or use a wildcard for all files in the job dir:
This step is required because you may have temporary or intermediate files that you don't want uploaded, and we don't want it to upload input files either.