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
The glob of *.png, *.jpg, *.gif, and *.svg in the svn propset svn:mime-type commands fail due to being quoted. SVN does not support expanding the globs itself, so we need to rely on the shell expanding them. Shell globs are only expanded when the * is unquoted, but currently the whole path including the glob is within quotes meaning that we're trying to pass the literal string *.png etc with the * unexpanded.
Steps to Reproduce
Ensure you have image assets in .wordpress.org directory in your plugin repo
Run the action
Check the logs
Scroll down to '➤ Copying tag...'
See error:
➤ Copying tag...
A tags/4.3.0
'assets/*.png' is not under version control
svn: E155010: The node '/home/runner/svn-a-z-listing/assets/*.png' was not found.
'assets/*.jpg' is not under version control
svn: E155010: The node '/home/runner/svn-a-z-listing/assets/*.jpg' was not found.
'assets/*.svg' is not under version control
svn: E155010: The node '/home/runner/svn-a-z-listing/assets/*.svg' was not found.
Expected behavior
svn propset commands succeed
The text was updated successfully, but these errors were encountered:
Describe the bug
The glob of
*.png
,*.jpg
,*.gif
, and*.svg
in thesvn propset svn:mime-type
commands fail due to being quoted. SVN does not support expanding the globs itself, so we need to rely on the shell expanding them. Shell globs are only expanded when the*
is unquoted, but currently the whole path including the glob is within quotes meaning that we're trying to pass the literal string*.png
etc with the*
unexpanded.Steps to Reproduce
.wordpress.org
directory in your plugin repoExpected behavior
svn propset
commands succeedThe text was updated successfully, but these errors were encountered: