aehrc / ecl-builder

UI components that help you build SNOMED CT ECL expressions.
Apache License 2.0
1 stars 0 forks source link

Publish package to Azure DevOps package repository #31

Closed johngrimes closed 3 months ago

johngrimes commented 4 months ago

Because this is not an open-source project, we are going to have to publish it to our private NPM repository on Azure DevOps.

image

There's a feed called aehrc-npm - if you click on the "Connect to feed" button it will provide instructions on how to add the repository to the project and authenticate to it.

Then we need to add a workflow to GitHub Actions that triggers upon the publication of a release, using a trigger like this:

on:
  release:
    types: [published]

This can be adapted from one of the standard actions in the GitHub library:

image