Skip to content

update installation instructions apt and yum (#280) #295

update installation instructions apt and yum (#280)

update installation instructions apt and yum (#280) #295

Workflow file for this run

name: Build Site
on:
push:
branches: [main]
jobs:
gh-release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: '16.14'
- uses: webfactory/[email protected]
with:
ssh-private-key: ${{ secrets.LEVOBOT_SSH_KEY }}
- name: Release to GitHub Pages
env:
USE_SSH: true
GIT_USER: git
run: |
git config --global user.email "[email protected]"
git config --global user.name "levobot"
if [ -e yarn.lock ]; then
yarn install --frozen-lockfile
elif [ -e package-lock.json ]; then
npm ci
else
npm i
fi
npm run deploy