Skip to content

style: change font importing path #6

style: change font importing path

style: change font importing path #6

Workflow file for this run

name: Deployment
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "20"
- name: update-liara
env:
LIARA_TOKEN: ${{ secrets.LIARA_API_TOKEN }}
run: |
npm i -g @liara/cli@5
liara deploy --app="iran-locations-api" --port=3000 --api-token="$LIARA_TOKEN" --no-app-logs
notify:
name: Discord Notification
runs-on: ubuntu-latest
needs:
- deploy
if: ${{ always() }} #
steps:
- name: Notify
uses: nobrayner/discord-webhook@v1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
discord-webhook: ${{ secrets.DISCORD_WEBHOOK }}