Skip to content

Merge pull request #3375 from LiteFarmOrg/LF-4365-upgrade-storybook-t… #878

Merge pull request #3375 from LiteFarmOrg/LF-4365-upgrade-storybook-t…

Merge pull request #3375 from LiteFarmOrg/LF-4365-upgrade-storybook-t… #878

Workflow file for this run

name: "Deploy"
on:
workflow_dispatch:
push:
branches:
- integration
concurrency: beta-deploy
jobs:
deploy:
runs-on: ubuntu-20.04
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Read deploy script contents
id: script
uses: juliangruber/read-file-action@v1
with:
path: beta-deploy.sh
- name: Deploy over SSH
uses: appleboy/[email protected]
with:
script_stop: true
host: ${{ secrets.BETA_SSH_HOST }}
username: ${{ secrets.BETA_SSH_USER_NEW }}
passphrase: ${{ secrets.BETA_SSH_PASS_NEW }}
key: ${{ secrets.BETA_SSH_KEY_NEW }}
command_timeout: 20m
script: ${{ steps.script.outputs.content }}