Merge pull request #231 from logos-blockchain/arjentix/ci-deploy

feat: deploy with ci
This commit is contained in:
Daniil Polyakov
2025-12-17 01:28:49 +03:00
committed by GitHub
2 changed files with 107 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
name: Deploy Sequencer
on:
workflow_dispatch:
jobs:
deploy:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Deploy to server
uses: appleboy/ssh-action@v1.2.4
with:
host: ${{ secrets.DEPLOY_SSH_HOST }}
username: ${{ secrets.DEPLOY_SSH_USERNAME }}
key: ${{ secrets.DEPLOY_SSH_KEY }}
envs: GITHUB_ACTOR
script_path: ci_scripts/deploy.sh