Skip to content

make account online from msig account #205

make account online from msig account

make account online from msig account #205

Workflow file for this run

name: Build and deploy the main branch
on:
push:
branches:
- master
jobs:
deploy:
name: "Deploy main branch"
runs-on: ubuntu-latest
steps:
- name: Configure SSH
run: |
mkdir -p ~/.ssh/
echo "$SSH_KEY" > ~/.ssh/staging.key
chmod 600 ~/.ssh/staging.key
cat >>~/.ssh/config <<END
Host staging
HostName $SSH_HOST
User $SSH_USER
IdentityFile ~/.ssh/staging.key
StrictHostKeyChecking no
END
env:
SSH_USER: ${{ secrets.SSH_USER }}
SSH_KEY: ${{ secrets.SSH_KEY }}
SSH_HOST: ${{ secrets.SSH_HOST }}
- name: Deploy
run: ssh staging 'cd ~/AWallet && ./deploy.sh'