Delete Karoo_BackEnd/Karoo_BackEnd/.idea directory #21
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: 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 |