fix: oops forgot to look at console #6
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 | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build-and-restart: | |
runs-on: self-hosted | |
steps: | |
- name: Pull the latest changes | |
working-directory: /home/iforge/ignis/ | |
run: git pull | |
- name: Throw up the maintenance page | |
run: touch /home/iforge/ignis-config/file_flags/maintenance_mode/enabled | |
- name: Build the project | |
working-directory: /home/iforge/ignis/ | |
run: turbo build | |
- name: Restart systemd service | |
run: /home/iforge/ignis-config/scripts/restart_ignis.sh | |
- name: Remove maintenance page | |
run: rm /home/iforge/ignis-config/file_flags/maintenance_mode/enabled |