Skip to content

Commit

Permalink
🎈
Browse files Browse the repository at this point in the history
  • Loading branch information
iguilhermegr authored Nov 29, 2023
1 parent 08e041b commit 480cb0d
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
on: [push]
name: Deploy on push
jobs:
web-deploy:
name: Deploy
runs-on: ubuntu-latest
steps:

- name: Get latest code
uses: actions/checkout@v3

- name: Deploy to Server
uses: easingthemes/ssh-deploy@main

env:
SSH_PRIVATE_KEY: ${{ secrets.FTP_KEY }}
REMOTE_HOST: ${{ secrets.FTP_HOSTNAME }}
REMOTE_USER: ${{ secrets.FTP_USERNAME }}
TARGET: '/home/ubuntu/Lukita'
EXCLUDE: "/node_modules/, dist, .env"

0 comments on commit 480cb0d

Please sign in to comment.