-
Notifications
You must be signed in to change notification settings - Fork 68
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Settings assets to false results in error #280
Comments
I get the same error as well. |
The issue is that here: Line 37 in 09e00f9
isn't expected that Lines 6 to 8 in 7756d64
A simple change like: - const filesToCommit = uniq(
+ const filesToCommit = !assets ? [] : uniq( here: Line 35 in 09e00f9
should fix it, I guess. |
micalevisk
added a commit
to micalevisk/ssh-keygen-lite
that referenced
this issue
Feb 2, 2022
More on this here: semantic-release/git#280
This was referenced Dec 13, 2022
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
With this .releaserc.js:
I get this error:
Is the documentation wrong? Docs say I should be able to set assets to false.
The text was updated successfully, but these errors were encountered: