Skip to main content

Github workflows

github Actions CI/CD

Continuous Integration/Continuous Deployment (CI/CD) service like GitHub Actions

For more info visit FTP-Deploy-Action by SamKirkland : GitHub Actions

steps:

  1. create Actions secrets:

open this url : https://github.com/anis-saied/simple-shop/settings/secrets/actions

add 2 secrets actions :

  • FTP_USERNAME
  • FTP_PASSWORD
  1. Create a Workflow File:
  • In your GitHub repository, create a directory named .github/workflows if it doesn't exist already.
  • Then create a YAML file inside this directory, for example, deploy.yml. This file will define your workflow.