ci: create a deployment workflow
Some checks failed
Deploy Next.js application / deploy (push) Failing after 21m5s

This commit is contained in:
Dorian Niemiec 2024-09-08 16:58:13 +02:00
parent fb3bf47dae
commit 08eb13e2b4

View file

@ -0,0 +1,13 @@
name: Deploy Next.js application
on: [push]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Deploy Next.js application
uses: https://github.com/appleboy/ssh-action@v1.0.3
with:
host: ${{ secrets.HOST }}
username: ${{ secrets.USERNAME }}
password: ${{ secrets.PASSWORD }}
script: deploy-next-app