Update documentation action.

master
Hasan Genc 3 years ago
parent b061f1ec03
commit c709cb15dc
  1. 20
      .github/workflows/documentation.yml
  2. 13944
      website/package-lock.json

@ -18,14 +18,8 @@ jobs:
- name: Test Build
working-directory: ./website
run: |
if [ -e yarn.lock ]; then
yarn install --frozen-lockfile
elif [ -e package-lock.json ]; then
npm ci
else
npm i
fi
npm run build
yarn
yarn build
gh-release:
if: github.event_name != 'pull_request'
runs-on: ubuntu-latest
@ -42,11 +36,5 @@ jobs:
run: |
git config --global user.email "${{ secrets.GIT_MAIL }}"
git config --global user.name "${{ secrets.GIT_USER }}"
if [ -e yarn.lock ]; then
yarn install --frozen-lockfile
elif [ -e package-lock.json ]; then
npm ci
else
npm i
fi
npm run deploy
yarn
yarn deploy

File diff suppressed because it is too large Load Diff
Loading…
Cancel
Save