add Support Issue to admin #12
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: CD-Liara | |
on: | |
push: | |
branches: | |
- back-end | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "18" | |
- name: Set Up Python | |
uses: actions/setup-python@v3 | |
with: | |
python-version: '3.10' | |
- name: Install dependencies | |
working-directory: Karoo_BackEnd/Karoo_BackEnd | |
run: | | |
python -m venv venv | |
source venv/bin/activate | |
pip install -r requirements.txt | |
- name: Generate City | |
working-directory: Karoo_BackEnd/Karoo_BackEnd | |
run: | | |
source venv/bin/activate | |
python manage.py generate_city | |
- name: Run Django migrations | |
working-directory: Karoo_BackEnd/Karoo_BackEnd | |
run: | | |
source venv/bin/activate | |
python manage.py makemigrations | |
python manage.py migrate | |
- name: Run Django tests | |
working-directory: Karoo_BackEnd/Karoo_BackEnd | |
run: | | |
source venv/bin/activate | |
python manage.py test | |
- name: update-liara | |
working-directory: Karoo_BackEnd/Karoo_BackEnd | |
env: | |
LIARA_TOKEN: ${{ secrets.LIARA_API_TOKEN }} | |
run: | | |
npm i -g @liara/cli@5 | |
liara deploy --app="karoo" --api-token="$LIARA_TOKEN" --no-app-logs --port=8000 |