Skip to content

Merge pull request #3934 from ONE-F-M/188754874 #273

Merge pull request #3934 from ONE-F-M/188754874

Merge pull request #3934 from ONE-F-M/188754874 #273

name: Deploy CI/CD to Staging
on:
push: # tells github to run this on any push to the repository
branches:
- staging
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
timeout-minutes: 90
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- name: Deploy to Staging
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.STAGING_HOST }}
username: ${{ secrets.USERNAME }}
key: ${{ secrets.STAGING_KEY }}
port: 22
script: |
cd /home/frappe/frappe-bench/apps/one_fm # we move into our app's folder
# git pull upstream staging # we pull any changes from git
git pull
cd /home/frappe
pip3 install --upgrade frappe-bench
cd /home/frappe/frappe-bench
bench setup requirements one_fm
bench migrate # sync database
bench restart #${{secrets.PASSKEY}}
# we remove any unused dependencies
bench doctor