-
Notifications
You must be signed in to change notification settings - Fork 33
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
First time using it, getting an Other files have been modified; changes not deployed
error
#24
Comments
Same error here. Have you found a solution? |
@loureirorg @Tropicalista you'll want to note the first line specifically in the readme (bolded text to call out likely issue):
Unfortunately that Action run log is no longer available, but I suspect that there were other changes in the branch that cause the action to fail (as designed). @Tropicalista do you have a link to a commit and action log that I can review to try and help triage? |
@Tropicalista you don't need the |
This sounds similar to #12. Would be nice to to get that fixed once the remaining questions on the issue have been clarified. |
I'm having a bit of trouble myself. I recently created a github copy of my svn repo. And after a certain amount of development I am ready for a new release. I created a release, and the tag was successfully pushed to SVN with the tag-deploy.yml action (using 10up/[email protected]). The only changes made since the last tag were the addition of the .wordpress-org folder with asset files, and a change to README.md. How can I force the action, so that I can get my latest release published on SVN? UPDATE: I wound up simply creating another release. So I have two releases which are pretty much the same, but the first of these never actually got released on the WordPress plugins repository since the stable tag never pointed at it. Doing yet another release made sure the changes by adding the assets folder and all didn't prevent the release from happening the second time round. |
This fix: 10up/action-wordpress-plugin-deploy#96 should be applied to https://github.com/10up/action-wordpress-plugin-asset-update/blob/develop/deploy.sh as well. |
Solved with #46. |
Describe the bug
After installing the action on my repo, I created a
trunk
branch, changed thereadme.txt
file, and submitted the changes, getting anOther files have been modified; changes not deployed
error.Commit: thecodecrate/wordpress-plugin-export-users@635870e
Failed action: https://github.com/loureirorg/wordpress-plugin-export-users/runs/938044443?check_suite_focus=true
Steps to Reproduce
trunk
branch (git checkout -b trunk
);readme.txt
file (echo "\n" >> readme.txt
);git add readme.txt; git commit -m "Test"; git push origin trunk
);Other files have been modified; changes not deployed
;Expected behavior
Changes made on WordPress.org.
Additional context
I use the
WordPress.org Plugin Deploy
as my deploy tool I don't have any problems with it. Recently I decided to tryWordPress.org Plugin Readme/Assets Update
for small changes on thereadme.txt
file.I strongly believe I am missing something and that's not an actual bug. Maybe it's because I didn't have a
trunk
repository and thus it is trying to submit all the contents at once.I actually don't use a
trunk
for any of my Git projects - instead, I create a new branch and once the code is ready to be merged I do a PR. So maybe I am not using thetrunk
approach as it was intended to by this tool.The text was updated successfully, but these errors were encountered: