-
Notifications
You must be signed in to change notification settings - Fork 372
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
NEW FEATURE: support file permissions #209
Comments
Currently this action does not support setting file permissions. Keep in mind the only information git stores about the file is if it can be executed or not. You should have to update that via the I have marked this issue as a enhancement. If other users request this feature it could be added via a new option specifying the file types to make executable, or by using the information set via |
chmod +x
change is not detected
Yes, this would be nice to specify a file and the permissions it needs |
I need this, but unfortunately it ain't gonna be easy as the library FTP-Deploy-Action uses to upload to FTP doesn't support this for all FTP servers: |
I implemented this today. There is a pull request waiting review. |
@SamKirkland you can just add a |
You can use my fork ex: https://github.com/vegan-buddies/vegan-buddies/blob/20e437da95379930c7dd05cecd87f6fe1801fee0/.github/workflows/website.yml#L34 |
Bug Description
When I only change the mode of a file (
chmod +x ./src/file
), then commit the change and push it.The ftp script does not seem to recognice the change. and does not alter the destination file mode.
My Action Config
My Action Log
The text was updated successfully, but these errors were encountered: