Skip to content

0.1.0

0.1.0 #16

Workflow file for this run

name: Medical UI Components
on:
release:
types: [created]
jobs:
build-and-publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
registry-url: https://npm.pkg.github.com/
# This will configure npm to use the GitHub Package Registry
scope: "@AgileVentures"
- name: Install dependencies and create package-lock.json
run: |
npm install --package-lock-only
npm install
- name: Build the package
run: npm run build
- name: Publish to GitHub Packages
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}