Skip to content

Commit

Permalink
Create main2.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Vital-Vuillaume committed Dec 26, 2023
1 parent b2867a1 commit 2cb03be
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/main2.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: FTP Deployment

on:
push:

jobs:
deploy:
runs-on: ubuntu-latest

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

- name: FTP Deployment
uses: SamKirkland/FTP-Deploy-Action@v4.3.4
with:
server: ${{ secrets.FTP_SERVER }}
username: ${{ secrets.FTP_USERNAME }}
password: ${{ secrets.FTP_PASSWORD }}
server-dir: /www/vital/pixel-adventure-game-web/
local-dir: ./
dry-run: false

0 comments on commit 2cb03be

Please sign in to comment.