Hello @andreasdueren
Since this feature currently does not exist, you could use the cloudron cli in the CI/CD with cloudron push
cloudron push --help
Usage: cloudron push [options] <local> <remote>
push a single local file or directory to a remote directory
Options:
--app <id/location> App id or location
-h, --help display help for command
Examples:
$ cloudron push --app myapp file.txt /app/data/file.txt # pushes file.txt
$ cloudron push --app myapp file.txt /app/data/ # pushes file.txt. trailing slash is important
$ cloudron push --app myapp dir /app/data # pushes dir/* as /app/data/dir/*
$ cloudron push --app myapp dir/. /app/data # pushes dir/* as /app/data/*
$ cloudron push --app myapp dir/subdir /app/data # pushes dir/subdir/* as /app/data/subdir/*
$ cloudron push --app myapp . /app/data # pushes .* as /app/data/*
Another option might be using rclone in the CI/CD with the SFTP of the LAMP app.
See: https://rclone.org/sftp/