Update config.php #145
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 Admin site to Firebase Hosting on merge | |
'on': | |
push: | |
branches: | |
- master | |
jobs: | |
web-deploy: | |
name: π Deploy | |
runs-on: ubuntu-latest | |
steps: | |
- name: π Get latest code | |
uses: actions/checkout@v3 | |
- name: π SFTP uploader # Upload to SFTP | |
uses: wangyucode/[email protected] | |
with: | |
host: ssh.strato.de # Recommended to put the credentials in github secrets. | |
username: [email protected] | |
password: ${{ secrets.FTP_PASSWORD }} | |
forceUpload: false # Optional, Force uploading all files, Default to false(upload only newer files). | |
localDir: './WebSite/' # Required, Absolute or relative to cwd. | |
remoteDir: '/WebSite' # Required, Absolute path only. | |
dryRun: false |