Is there a way to deploy only modified file that are part of the PR (of my PR contains 5 files, I want only these 4 files to be uploaded to the server).
- name: ???? Synchronise les fichiers(check deploy4)
uses: SamKirkland/[email protected]
with:
server: ${{ secrets.FTP }}
username: ${{ secrets.FTP_USERNAME }}
password: ${{ secrets.FTP_PASSWORD }}`
This yaml download everything, even if the PR contains only 4 files.
–>
`name: ???? Deployer sur site FTP ‘francois’
on:
pull_request:
branches:
- FTP_dev
jobs:
web-deploy:
name: ???? Deploy
runs-on: ubuntu-latest
steps:
- name: ???? Récupère le code
uses: actions/checkout@v4
`
New contributor
François Hébert is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.