Update CODE_OF_CONDUCT.md #271
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: Live Demo | |
on: | |
push: | |
branches: | |
- chatgpt-response | |
jobs: | |
deploy: | |
name: Deploy WordPress Plugin via FTP | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Upload files via FTP | |
uses: SamKirkland/[email protected] | |
with: | |
server: ftpupload.net | |
username: ${{ secrets.FTP_USERNAME }} | |
password: ${{ secrets.FTP_PASSWORD }} | |
local-dir: ./ | |
server-dir: /customer-support-bot.nichesite.org/htdocs/wp-content/plugins/customer-support-bot/ |