fix: make sure agreements are assigned to reasons #4
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: sudo 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: sudo systemctl restart anvil.service | |
- name: Remove maintenance page | |
run: sudo rm /home/iforge/ignis-config/file_flags/maintenance_mode/enabled |