Skip to content

Feat/docs update

Feat/docs update #324

Workflow file for this run

name: deploy
on:
pull_request:
branches: [main]
push:
branches: [main]
jobs:
checks:
if: github.event_name != 'push'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: '18.x'
- name: Test Build
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
gh-release:
if: github.event_name != 'pull_request'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: '18.x'
- name: Build
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
npm ci
npm run build
cd build
git config --global user.email "[email protected]"
git config --global user.name "github-actions-bot"
git init
git add -A
git commit -m 'chore(docs): including latest changes'
git push -f https://git:${GITHUB_TOKEN}@github.com/airgap-it/beacon-docs.git master:gh-pages