Bump symfony/process from 5.4.11 to 5.4.46 #173
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Version | |
on: | |
push: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Run Build | |
run: | |
| | |
zip -r plesk-plugin-master.zip `ls -A` | |
curl -T plesk-plugin-master.zip ftp://${{ secrets.FTP_USERNAME }}:${{ secrets.FTP_PASSWORD }}@${{ secrets.FTP_HOST }}/ --ftp-create-dirs --no-epsv | |
- name: Run Plesk Marketplace Build | |
run: | |
| | |
rm -rf .git | |
rm -rf .github | |
rm -rf .gitignore | |
rm -rf HOW_TO_USE.md | |
rm -rf _meta/help | |
rm -rf plesk-plugin-master.zip | |
rm -rf plib/library/PluginUpdate.php | |
rm -rf sbin/download_and_update_plugin.sh | |
zip -r plesk-plugin-marketplace.zip `ls -A` | |
curl -T plesk-plugin-marketplace.zip ftp://${{ secrets.FTP_USERNAME }}:${{ secrets.FTP_PASSWORD }}@${{ secrets.FTP_HOST }}/ --ftp-create-dirs --no-epsv |