Skip to content

TR-4446: update transmissions docs with new error code (#754) #143

TR-4446: update transmissions docs with new error code (#754)

TR-4446: update transmissions docs with new error code (#754) #143

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: Algolia Index
# Controls when the action will run.
on:
# Triggers the workflow on push events but only for the main branch
push:
branches: [main, next, master]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
index:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '14'
- name: Cache dependencies
uses: actions/cache@v2
with:
path: ~/.npm
key: npm-${{ hashFiles('package-lock.json') }}
restore-keys: npm-
- name: Install dependencies
run: npm ci --ignore-scripts
# Runs a single command using the runners shell
- name: Index Posts
run: npm run build:index:momentum && npm run build:index:support && npm run build:index:analyst
env:
NEXT_PUBLIC_ALGOLIA_APP_ID: ${{secrets.NEXT_PUBLIC_ALGOLIA_APP_ID}}
ALGOLIA_SEARCH_ADMIN_KEY: ${{secrets.ALGOLIA_SEARCH_ADMIN_KEY}}