Last active
May 17, 2022 18:13
-
-
Save arif98741/0b7bd128eb00a0eab3b56a8de27083ec to your computer and use it in GitHub Desktop.
Github CI Pipeline for FTP
This file contains hidden or 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
on: | |
push: | |
branches: [ production ] | |
name: Phpdark.com Deployment | |
jobs: | |
FTP-Deploy-Action: | |
name: FTP-Deploy-Action | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
with: | |
fetch-depth: 2 | |
- name: FTP-Deploy-Action | |
uses: SamKirkland/[email protected] | |
with: | |
ftp-server: server290.web-hosting.com/public_html | |
ftp-username: ${{ secrets.USERNAME }} | |
ftp-password: ${{ secrets.PASSWORD }} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment