Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
athuler committed Sep 1, 2023
2 parents 9f6c9c8 + ae23b25 commit 33d827d
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
on:
push:
branches: [ main ]
name: Send to production
jobs:
web-deploy:
name: Deploy
runs-on: ubuntu-latest
steps:
- name: Get latest code
uses: actions/checkout@v2

- name: Sync files
uses: SamKirkland/FTP-Deploy-Action@4.3.0
with:
server: ${{ secrets.ftp_server }}
username: ${{ secrets.ftp_username }}
password: ${{ secrets.ftp_password }}

0 comments on commit 33d827d

Please sign in to comment.