Skip to content

Merge pull request #83 from andrewcourtice/feat/history-devtools #120

Merge pull request #83 from andrewcourtice/feat/history-devtools

Merge pull request #83 from andrewcourtice/feat/history-devtools #120

name: Publish Demo App
on:
push:
branches: [ main ]
workflow_dispatch:
jobs:
build_and_publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Prepare NodeJS
uses: actions/setup-node@v1
with:
node-version: 16.x
- name: Get Yarn Cache 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 install
- name: Build Harlem Packages
run: yarn build
- name: Build App
run: cd app && yarn build --base "/harlem/"
# please check out the docs of the workflow for more details
# @see https://github.com/crazy-max/ghaction-github-pages
- name: Deploy to GitHub Pages
uses: crazy-max/ghaction-github-pages@v2
with:
target_branch: demo
build_dir: app/dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}