Revert "feat: add repository and service functions to retrieve store … #4
This file contains hidden or 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 Server | |
| on: | |
| push: | |
| branches: | |
| - deployment | |
| jobs: | |
| deploy: | |
| runs-on: self-hosted | |
| steps: | |
| - name: Pull latest image | |
| run: docker pull kafo9991/sellio-app:latest | |
| - name: Restart containers | |
| run: | | |
| cd ~/sellio_backend | |
| docker compose pull | |
| docker compose up -d |