Merge pull request #682 from MTES-MCT/feat-ocsge-octobre-2024 #58
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 production Airflow | |
on: | |
push: | |
branches: | |
- "staging" | |
jobs: | |
deploy: | |
name: Deploy | |
runs-on: ubuntu-latest | |
steps: | |
- name: executing remote ssh git pull | |
uses: appleboy/ssh-action@master | |
with: | |
host: ${{ secrets.AIRFLOW_SSH_HOST }} | |
username: ${{ secrets.AIRFLOW_SSH_USER }} | |
key: ${{ secrets.AIRFLOW_SSH_KEY }} | |
port: ${{ secrets.AIRFLOW_SSH_PORT }} | |
script: cd ~/sparte && git pull |