Closed cr1901 closed 6 months ago
asset: $${{ matrix.assets || '' }}
This is treated as file name $
when matrix.assets
is not set. You have to use ${{ matrix.assets || '' }}
instead of $${{ matrix.assets || '' }}
FYI, here is the expanded log of the failed job (https://github.com/cr1901/swmon/actions/runs/9248472961/job/25438823984#step:5:10).
(asset
is set to $
.)
is it possible to improve the error message to explain what I'm doing wrong?
In this case, it would probably be to check beforehand whether the path passed in asset
or include
is existent, but it might be okay to simply output the command to be executed.
I am about all CI-'ed out tonight... anyways that change worked. CI is now green, thanks for the help :D: https://github.com/cr1901/swmon/actions/runs/9249016102
I'm trying to use
upload-rust-binary-action
to upload my first release of a small CLI/GUI app and can't seem to make it succeed no matter what I do. Given myrelease.yml
so far:The build consistently fails with:
Eventually the build times out and fails. What am I doing wrong? Even if this is user error, is it possible to improve the error message to explain what I'm doing wrong?