Skip to content

feat(store): async batch operations (#480) #152

feat(store): async batch operations (#480)

feat(store): async batch operations (#480) #152

Workflow file for this run

name: 'docs'
on:
push:
branches:
- master
- dev
paths:
- 'docs/**'
defaults:
run:
working-directory: ./docs
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: webfactory/[email protected]
with:
ssh-private-key: ${{ secrets.GH_PAGES_DEPLOY }}
- uses: actions/setup-node@v1
with:
node-version: '16.x'
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- uses: actions/cache@v2
id: yarn-cache
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install dependencies
run: yarn
- name: Identity
run: |
git config --global user.email "[email protected]"
git config --global user.name "NetanelBasal"
- name: Release to GitHub Pages
env:
USE_SSH: true
GIT_USER: NetanelBasal
run: yarn deploy