Skip to content

Commit

Permalink
Workflow - Deploy docs on master push (#3473)
Browse files Browse the repository at this point in the history
* added workflow to deploy docs on master

* Removed on push

* Removed manual and comments
  • Loading branch information
nitzanyiz authored Dec 31, 2024
1 parent c757c47 commit f2d4d00
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/deployDocs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Deploy Documentation

on:
push:
branches:
- master

jobs:
build-and-deploy:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '.nvmrc'
cache: 'yarn'

- name: Install dependencies
run: yarn install

- name: Build documentation
run: yarn docs:build

- name: Deploy documentation
run: |
cd docuilib
yarn install
yarn deploy

0 comments on commit f2d4d00

Please sign in to comment.