Skip to content

fixed module fetching #7

fixed module fetching

fixed module fetching #7

Workflow file for this run

# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
# For more information see: https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages
name: Publish npm Packages
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- name: Publish cmca
run: |
cd src
npm ci
npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_SECRET }}
- name: Publish cmca-build
run: |
cd cmca-build-src
npm ci
npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_SECRET }}