Skip to content

add ability to search in /myanime command #22

add ability to search in /myanime command

add ability to search in /myanime command #22

Workflow file for this run

name: Bot CI
on:
push:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- run: npm i
- run: npm run build
deploy:
needs: build
runs-on: ubuntu-latest
env:
NVM_DIR: /home/massick/.nvm
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.IP }}
username: ${{ secrets.USERNAME }}
key: ${{ secrets.KEY }}
script: |
export NVM_DIR=~/.nvm
source ~/.nvm/nvm.sh
cd /bots/anime-bot
git checkout .
git pull
nvm -v
node -v
npm -v
nvm use 18
npm run build