Skip to content

Update README.md

Update README.md #3

Workflow file for this run

# # This is a basic workflow to help you get started with Actions
# name: 🚀 Deploying server-side on cpnal
# # Controls when the workflow will run
# on:
# # Triggers the workflow on push or pull request events but only for the "main" branch
# push:
# branches: [ "master" ]
# pull_request:
# branches: [ "master" ]
# jobs:
# web-deploy:
# name: 🎉 Checking
# runs-on: ubuntu-latest
# steps:
# - name: Use Node.js 20
# uses: actions/setup-node@v4
# with:
# node-version: '20'
# - name: 🚚 Get latest code
# uses: actions/checkout@v3
# - name: 📂 Sync files
# uses: SamKirkland/FTP-Deploy-Action@v4.3.4
# with:
# server: ftp.z8tech.one
# username: ${{ secrets.FTPUSERNAME }}
# password: ${{ secrets.FTPPASSWORD }}
# protocol: ftps
# server-dir: Backend/
# local-dir: Backend/
# - name: Install Dependencies 👨‍💻
# run: |
# cd Backend
# composer update