Merge pull request #182 from notional-labs/hoang/ibc-transfer-memo #125
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy | |
on: | |
# Push to long living branches or PRs | |
push: | |
branches: | |
- master | |
- main | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Update the repo from web server | |
uses: appleboy/[email protected] | |
env: | |
NODE_OPTIONS: --openssl-legacy-provider | |
CI: false | |
with: | |
host: ${{ secrets.WEB_SERVER }} | |
username: ${{ secrets.USERNAME }} | |
key: ${{ secrets.PRIV_KEY }} | |
envs: CI, NODE_OPTIONS | |
script: | | |
cd ~/multisig.notional.ventures | |
bash deploy.sh |