You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have tag-annotation-template: '' and it is just ignored and the default is used. I know im doing it right because if i have anything in the string it works.
let annotationTemplate = getInput('tag-annotation-template') || 'Released version {VERSION}';
this line is whats causing the problem when getInput('tag-annotation-template') is blank its considered false and just defaults to Released version {VERSION} so there's no way to not have an annotation
my current workaround is to just use v1.0.3 which doesn't have annotations at all uses: salsify/[email protected]
personally i think you should just change it to
let annotationTemplate = getInput('tag-annotation-template') || '';
and let the default operation have no annotation and let users add an annotation if they want by specifying tag-annotation-template
The text was updated successfully, but these errors were encountered:
I have
tag-annotation-template: ''
and it is just ignored and the default is used. I know im doing it right because if i have anything in the string it works.this line is whats causing the problem when
getInput('tag-annotation-template')
is blank its considered false and just defaults toReleased version {VERSION}
so there's no way to not have an annotationmy current workaround is to just use v1.0.3 which doesn't have annotations at all
uses: salsify/[email protected]
personally i think you should just change it to
and let the default operation have no annotation and let users add an annotation if they want by specifying
tag-annotation-template
The text was updated successfully, but these errors were encountered: