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

Add release-it config (#35) #13

Add release-it config (#35)

Add release-it config (#35) #13

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@v3
with:
# the same as in our docker_membrane repository
node-version: 16
- 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 }}