Skip to content

fix: various fixes in tandem... (#916) #512

fix: various fixes in tandem... (#916)

fix: various fixes in tandem... (#916) #512

Workflow file for this run

name: Client CI/CD
on:
push:
branches:
- "staging"
- "release/*"
paths:
- "client/**"
- "common/**"
workflow_dispatch:
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Deploy to staging
if: github.ref == 'refs/heads/staging'
uses: appleboy/ssh-action@1a8b3784eaa665f677fa114edd5683bb6a6bfaa8
with:
host: ${{ secrets.TACHI_HOST }}
username: tachi
key: ${{ secrets.TACHI_KEY }}
script: tachi-client-deploy -s
- name: Deploy to live
if: startsWith(github.ref, 'refs/heads/release')
uses: appleboy/ssh-action@1a8b3784eaa665f677fa114edd5683bb6a6bfaa8
with:
host: ${{ secrets.TACHI_HOST }}
username: tachi
key: ${{ secrets.TACHI_KEY }}
script: tachi-client-deploy