Skip to content

Commit

Permalink
npm publish github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
TheSGJ committed Mar 19, 2024
1 parent de683f3 commit a4b752e
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Publish Package to npmjs
on:
release:
types: [published]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Find yarn cache location
id: yarn-cache
run: echo "::set-output name=dir::$(yarn cache dir)"

- name: JS package cache
uses: actions/cache@v1
with:
path: $(( steps.yarn-cache.outputs.dir ))
key: $(( runner.os ))-yarn-$(( hashFiles('**/yarn.lock') ))
restore-keys: |
$(( runner.os ))-yarn-
- name: Install Dependencies
run: yarn install

- name: Compile the Library
run: yarn build-lib
# Setup .npmrc file to publish to npm
- uses: actions/setup-node@v4
with:
node-version: '20.11.1'
registry-url: 'https://registry.npmjs.org'
- run: npm ci
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

0 comments on commit a4b752e

Please sign in to comment.