Compare commits
3 Commits
e04999c0f2
...
e55855f018
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e55855f018 | ||
|
|
7a4fd7c267 | ||
|
|
5d6f95f12e |
21
.gitea/workflows/deploy.yaml
Normal file
21
.gitea/workflows/deploy.yaml
Normal file
@ -0,0 +1,21 @@
|
||||
name: Deploy on production
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
jobs:
|
||||
deploy:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Deploy by SSH to production environment
|
||||
uses: appleboy/ssh-action@master
|
||||
with:
|
||||
host: ${{ secrets.PRODUCTION_SSH_HOST }}
|
||||
username: ${{ secrets.PRODUCTION_SSH_USERNAME }}
|
||||
key: ${{ secrets.PRODUCTION_SSH_KEY }}
|
||||
port: ${{ secrets.PRODUCTION_SSH_PORT }}
|
||||
script: |
|
||||
cd /home/mishealth/BD-Core-FHIR-IG
|
||||
git pull origin main
|
||||
bash _genonce.sh
|
||||
Loading…
Reference in New Issue
Block a user