criado api php para enviar emails e criado workflow para deploy em ft… #1
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: Deploy via ftp | ||
on: push | ||
jobs: | ||
deploy: | ||
name: Deploy | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: FTP Deploy Locaweb | ||
uses: locaweb/[email protected] | ||
with: | ||
host: ${{ secrets.HOST }} | ||
user: ${{ secrets.USER }} | ||
password: ${{ secrets.PASS }} | ||
localDir: "docs/browser" |