Last active
August 21, 2024 21:38
-
-
Save cabrerahector/c966713cccc44fe6a834155a21a47571 to your computer and use it in GitHub Desktop.
Bitbucket Pipelines - Deploying to Server with atlassian/ftp-deploy
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
image: atlassian/default-image:2 | |
pipelines: | |
branches: | |
master: | |
- step: | |
name: Deploy to Production | |
deployment: production | |
script: | |
- pipe: atlassian/ftp-deploy:0.7.0 | |
variables: | |
USER: $FTP_USERNAME | |
PASSWORD: $FTP_PASSWORD | |
SERVER: $FTP_HOST | |
REMOTE_PATH: /public_html | |
DELETE_FLAG: 'false' # Don't delete existing files | |
EXTRA_ARGS: "--exclude=.bitbucket/ --exclude=.git/ --exclude=bitbucket-pipelines.yml --exclude=.gitignore" # Ignore these |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment