Merge pull request #393 from njorocs/oral-cancer #98
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 to prod 8600 | |
on: | |
push: | |
branches: [ master ] | |
jobs: | |
build: | |
name: Deploy | |
runs-on: ubuntu-latest | |
steps: | |
- name: executing remote connection | |
uses: appleboy/ssh-action@master | |
with: | |
host: ${{ secrets.HOST }} | |
username: ${{ secrets.USERNAME }} | |
key: ${{ secrets.CICD_SECRET }} | |
port: ${{ secrets.PORT }} | |
command_timeout: 200m | |
script: | | |
cd /apps/github-workflows/kenyaemr-modules | |
sudo rm -rf openmrs-module-kenyaEMRChart | |
sudo mkdir openmrs-module-kenyaEMRChart | |
sudo chown -R cicd2:cicd2 openmrs-module-kenyaEMRChart | |
git config --global --add safe.directory /apps/github-workflows/kenyaemr-modules/openmrs-module-kenyaEMRChart | |
cd /apps/github-workflows/kenyaemr-modules/openmrs-module-kenyaEMRChart | |
git clone -b master https://github.com/palladiumkenya/openmrs-module-kenyaEMRChart.git . | |
git status | |
mvn license:format | |
mvn clean install -DskipTests | |
sudo rm -rf /var/lib/OpenMRS/modules/kenyaEMRChart-*.omod | |
sudo cp /apps/github-workflows/kenyaemr-modules/openmrs-module-kenyaEMRChart/omod/target/kenyaemrCharts-*.omod /var/lib/OpenMRS/modules/ | |
sudo chown -R tomcat:tomcat /var/lib/OpenMRS/modules/ | |
sudo chmod +r /var/lib/OpenMRS/modules/*.omod | |
sudo chmod 755 /var/lib/OpenMRS/modules/*.omod | |
sudo systemctl stop tomcat | |
sudo systemctl start tomcat |