Skip to content

Add temporary wallet address #24

Add temporary wallet address

Add temporary wallet address #24

name: staging-deploy-pipeline
on:
push:
branches:
- staging
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: SSH and Redeploy Staging
uses: appleboy/[email protected]
with:
host: ${{ secrets.STAGING_HOST }}
username: ${{ secrets.STAGING_USERNAME }}
key: ${{ secrets.STAGING_PRIVATE_KEY }}
port: ${{ secrets.SSH_PORT }}
script: |
cd rpgf4-pw-backend
docker-compose down -v
docker image prune -a --force
git checkout staging
git reset --hard origin/staging
git pull origin staging
docker-compose build --no-cache
docker-compose up -d