Skip to content

Merge pull request #947 from flowforge/905-add-customer-success-to-th… #969

Merge pull request #947 from flowforge/905-add-customer-success-to-th…

Merge pull request #947 from flowforge/905-add-customer-success-to-th… #969

Workflow file for this run

name: Build Site
on:
workflow_dispatch:
push:
branches:
- main
schedule:
- cron: "30 1 * * 5"
jobs:
build_deploy:
if: ${{ github.repository == 'flowforge/website' }}
runs-on: ubuntu-latest
steps:
- name: Check out website repository
uses: actions/checkout@v3
with:
path: 'website'
- name: Check out flowforge repository (to access the docs)
uses: actions/checkout@v3
with:
repository: 'flowforge/flowforge'
ref: maintenance
path: 'flowforge'
- name: Install jq
run: sudo apt-get -qy install jq
- uses: actions/setup-node@v2
with:
node-version: '14'
- run: npm run docs
working-directory: 'website'
- name: Commit Latest Docs
run: |
cd ./website
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
git add src/docs/* -A -f
git commit -a -m "Bot: update docs"
- name: Push to 'live' branch
uses: ad-m/github-push-action@master
with:
directory: './website'
branch: live
force: true