Merge pull request #2815 from Armanul46/readme-updated-34 #123
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
| name: Build Development & Release | |
| on: | |
| push: | |
| branches: | |
| - development | |
| jobs: | |
| web-deploy: | |
| name: 🎉 Deploy - development-live.com | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: 🚚 Get latest code | |
| uses: actions/checkout@master | |
| - name: 📂 Sync files | |
| uses: SamKirkland/FTP-Deploy-Action@v4.3.4 | |
| with: | |
| server: ${{ secrets.DEVELOPMENT_LIVE_FTP_SERVER }} | |
| username: ${{ secrets.DEVELOPMENT_LIVE_FTP_USER }} | |
| password: ${{ secrets.DEVELOPMENT_LIVE_FTP_PASS }} | |
| server-dir: ${{ secrets.DEVELOPMENT_LIVE_FTP_PATH }} | |
| exclude: | | |
| node_modules/** | |
| readme.txt | |
| todo.txt | |
| webpack.*.js | |
| **/Gruntfile.js | |
| **/.* | |
| **/.git/** | |
| **/.github/** | |
| **/.husky/** | |
| **/dev-*/** | |
| **/*-test/** | |
| **/*-beta/** | |
| **/scss/** | |
| **/sass/** | |
| **/build/*.txt | |
| **/*.map | |
| **/*.config | |
| **/*.config.js | |
| **/package.json | |
| **/package-lock.json | |
| **/tsconfig.json | |
| **/mix-manifest.json | |
| **/phpcs.xml | |
| **/composer.json | |
| **/composer.lock | |
| **/*.md | |
| **/*.mix.js | |
| **/none | |
| **/artisan | |
| **/phpcs-report.xml | |
| **/LICENSE | |
| **/Installable | |
| **/tests | |
| **/yarn.lock |