Skip to content

(chore) fixes to build ci #38

(chore) fixes to build ci

(chore) fixes to build ci #38

Workflow file for this run

name: OHRI DOCS CI
on:
push:
tags:
- "*"
branches:
- "*"
pull_request:
branches:
- "*"
types: [opened, synchronize]
release:
types:
- created
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: "18"
- name: Cache dependencies
id: cache
uses: actions/cache@v3
# with:
# path: "**/node_modules"
# key: ${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }}
with:
path: |
~/.pnpm
${{ github.workspace }}/.next/cache
# Generate a new cache whenever packages or source files change.
key: ${{ runner.os }}-nextjs-${{ hashFiles('**/pnpm-lock.yaml') }}-${{ hashFiles('**/*.js', '**/*.jsx', '**/*.ts', '**/*.tsx') }}
# If source files changed but packages didn't, rebuild from a prior cache.
restore-keys: |
${{ runner.os }}-nextjs-${{ hashFiles('**/pnpm-lock.yaml') }}-
- name: Install dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: pnpm install
- name: Run build
run: pnpm build
docs_deployment:
runs-on: ubuntu-latest
needs: build
if: ${{ github.ref == 'refs/heads/dev' }}
steps:
# Update the Microfrontends to reflect what we have in the Working branch
- uses: garygrossgarten/github-action-ssh@release
name: BackUp and Run the Update DOCS Site Script
with:
command: cd /usr/share/tomcat/microfrontends/
sh deploy-ohri-docs.sh
host: ${{ secrets.HISTAC_HOST }}
username: ${{ secrets.HISTAC_USERNAME }}
privateKey: ${{ secrets.HISTAC_KEY}}
port: ${{ secrets.HISTAC_PORT }}