Skip to content

updaated node version in container for ci/cd #2

updaated node version in container for ci/cd

updaated node version in container for ci/cd #2

Workflow file for this run

name: Build and Deploy Locally
on:
push:
branches:
- main
jobs:
deploy:
runs-on: self-hosted
steps:
- uses: actions/checkout@v2
- name: SSH and Deploy
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.SERVER_IP }}
username: ${{ secrets.SERVER_USER }}
key: ${{ secrets.SERVER_SSH_KEY }}
script: |
cd /home/nikos/itb/ewc-poc/ewc-wallet-conformance-backend
git pull origin main
docker-compose down
docker-compose build
docker-compose up -d