Skip to content

Commit

Permalink
Fixed dxw plugin dependencies and added deploy to NPM registry
Browse files Browse the repository at this point in the history
  • Loading branch information
MarioRivis committed Oct 23, 2023
1 parent ab80668 commit 7f6f4c4
Show file tree
Hide file tree
Showing 3 changed files with 47 additions and 266 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,19 @@ jobs:
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Setup Node with NPM Package Registry
uses: actions/setup-node@v3
with:
node-version: '18.x'
cache: 'npm'
registry-url: 'https://registry.npmjs.org'
scope: '@dxworks'

- name: Publish on NPM
run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

- name: Prepare Release Notes
run: touch ${{ github.workspace }}/releaseNotes/v${{ steps.semver_parser.outputs.semver }}.md

Expand Down
Loading

0 comments on commit 7f6f4c4

Please sign in to comment.