diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index f073a85..f9febce 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -11,15 +11,13 @@ jobs: packages: write steps: - uses: actions/checkout@v3 - # Setup .npmrc file to publish to GitHub Packages - uses: actions/setup-node@v3 with: node-version: '14.x' - registry-url: 'https://registry.npmjs.org/ .' - # Defaults to the user or organization that owns the workflow file + registry-url: 'https://registry.npmjs.org/' - run: yarn - run: yarn build - run: yarn test - - run: yarn publish + - run: yarn publish --access public env: NODE_AUTH_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }} diff --git a/package.json b/package.json index 3f932ea..70fe0b0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@i-tech-uw/mllp-server", - "version": "3.3.0", + "version": "3.3.1-alpha.0", "description": "MLLP (HL7) implementation in Node.js", "main": "lib/mllp.js", "types": "lib/mllp.d.ts", @@ -48,8 +48,5 @@ "dependencies": { "hl7": "1.x.x", "tiny-typed-emitter": "^2.1.0" - }, - "publishConfig": { - "registry": "https://npm.pkg.github.com" } }