mirror of
https://github.com/logos-blockchain/lssa.git
synced 2026-01-02 05:13:08 +00:00
24 lines
518 B
YAML
24 lines
518 B
YAML
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
|