Skip to content
This repository has been archived by the owner on May 16, 2024. It is now read-only.

Release 7.5.0

Release 7.5.0 #33

Workflow file for this run

name: Deploy Docs
on:
workflow_dispatch:
push:
tags:
- "*"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v4
with:
node-version: '18.12.x'
- name: Install yarn Dependencies
run: yarn
- name: Build Docs
run: yarn docs
- name: Deploy
uses: s0/git-publish-subdir-action@develop
env:
REPO: self
BRANCH: gh-pages
FOLDER: docs
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}