Skip to content

Add more keywords

Add more keywords #53

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: CI
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
web-deploy:
name: 🎉 Deploy
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: 🚚 Get latest code
uses: actions/checkout@v3
- name: FTP Deploy
# You may pin to the exact commit or the version.
# uses: SamKirkland/FTP-Deploy-Action@da0d77ff390a13097c60f9b9eb954e503a480d97
uses: SamKirkland/FTP-Deploy-Action@4.3.3
with:
# Deployment destination server & path. Formatted as protocol://domain.com:port/full/destination/path/
server: ${{secrets.WEB_FTP_URL}}
# FTP account username
username: ${{secrets.WEB_FTP_USER}}
# FTP account password
password: ${{secrets.WEB_FTP_PWD}}
# The local folder to copy, defaults to root project folder
# local-dir: public_html # optional, default is ./
# Passes through options into git-ftp
#git-ftp-args: # optional