fix: trigger workflow on workflow change as well #2
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: Continuous Deployment for Metakgp-Wiki | |
on: | |
push: | |
branches: | |
- "master" | |
paths: | |
- ".github/workflows/deploy.yaml" | |
- "jobs/**" | |
- "mediawiki/**" | |
- "mysql/**" | |
- "nginx/**" | |
- "docker-compose.prod.yml" | |
- "docker-compose.yml" | |
jobs: | |
pull: | |
name: Pull Stage | |
runs-on: ubuntu-latest | |
steps: | |
- name: Sync with remote repository | |
uses: appleboy/ssh-action@master | |
env: | |
WIKI_DIR: ${{ secrets.WIKI_DIR }} | |
with: | |
host: ${{ secrets.HOSTNAME }} | |
username: ${{ secrets.USERNAME }} | |
key: ${{ secrets.SSH_PRIVATE_KEY }} | |
passphrase: ${{ secrets.PASSPHRASE }} | |
envs: WIKI_DIR | |
script_stop: true | |
script: | | |
cd "${WIKI_DIR}/" | |
sudo git fetch origin | |
sudo git reset --hard origin/master | |
build: | |
name: Build Stage | |
needs: pull | |
runs-on: ubuntu-latest | |
steps: | |
- name: Build the latest docker container | |
uses: appleboy/ssh-action@master | |
env: | |
WIKI_DIR: ${{ secrets.WIKI_DIR }} | |
with: | |
host: ${{ secrets.HOSTNAME }} | |
username: ${{ secrets.USERNAME }} | |
key: ${{ secrets.SSH_PRIVATE_KEY }} | |
passphrase: ${{ secrets.PASSPHRASE }} | |
command_timeout: 60m | |
envs: WIKI_DIR | |
script_stop: true | |
script: | | |
cd "${WIKI_DIR}/" | |
sudo docker compose -f docker-compose.prod.yml build | |
deploy: | |
name: Deploy Stage | |
needs: [pull, build] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Deploy the latest build | |
uses: appleboy/ssh-action@master | |
env: | |
WIKI_DIR: ${{ secrets.WIKI_DIR }} | |
with: | |
host: ${{ secrets.HOSTNAME }} | |
username: ${{ secrets.USERNAME }} | |
key: ${{ secrets.SSH_PRIVATE_KEY }} | |
passphrase: ${{ secrets.PASSPHRASE }} | |
envs: WIKI_DIR | |
script_stop: true | |
script: | | |
cd "${WIKI_DIR}/" | |
sudo docker compose -f docker-compose.prod.yml down | |
sudo docker compose -f docker-compose.prod.yml up -d |