Skip to content
This repository has been archived by the owner on Nov 30, 2023. It is now read-only.

[Bug] Fix Patient Search when patients have the same name (#1396) #1289

[Bug] Fix Patient Search when patients have the same name (#1396)

[Bug] Fix Patient Search when patients have the same name (#1396) #1289

Workflow file for this run

name: Release
on:
push:
branches:
- main
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v2
- name: Setup Node.js 16.x
uses: actions/setup-node@v2
with:
node-version: 16.x
- name: Install Dependencies
run: npm ci
- run: npm run build
- name: Create Release Pull Request
uses: changesets/action@v1
with:
# This expects you to have a script called release which does a build for your packages and calls changeset publish
publish: npm run release
env:
CI: true
GITHUB_TOKEN: ${{ secrets.CTW_CICD_GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}