Skip to content

Commit

Permalink
Add FTP deployment workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
judemont committed Oct 13, 2024
1 parent bd6bfca commit 4f1dc6c
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: FTP Deployment

on:
push:
branches:
- main

jobs:
deploy:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: FTP Deployment
uses: SamKirkland/[email protected]
with:
server: ${{ secrets.FTP_SERVER }}
username: ${{ secrets.FTP_USERNAME }}
password: ${{ secrets.FTP_PASSWORD }}
server-dir: "/www/recytech/shop"
local-dir: ./
dry-run: false

0 comments on commit 4f1dc6c

Please sign in to comment.