Skip to content

Commit

Permalink
ci: update build script
Browse files Browse the repository at this point in the history
  • Loading branch information
AllanOliveiraM committed Sep 13, 2022
1 parent bee767e commit 3246402
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 16 deletions.
19 changes: 4 additions & 15 deletions .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
@@ -1,27 +1,14 @@
# 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://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages

name: Node.js Package
name: NPM Package

on:
release:
types: [created]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 17
- run: npm install --global yarn
- run: yarn
- run: yarn type:check
- run: NODE_ENV='production' yarn build:dist

publish-npm:
needs: build
build-publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand All @@ -32,6 +19,8 @@ jobs:
- run: echo "//registry.npmjs.org/:_authToken=${{secrets.npm_token}}">.npmrc
- run: npm install --global yarn
- run: yarn
- run: yarn type:check
- run: NODE_ENV='production' yarn build:dist
- run: yarn publish --no-git-tag-version
env:
NODE_AUTH_TOKEN: ${{secrets.npm_token}}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"react",
"typescript"
],
"version": "0.0.6",
"version": "0.0.7",
"main": "./dist/index.cjs.js",
"module": "./dist/index.esm.js",
"types": "./dist/index.d.ts",
Expand Down

0 comments on commit 3246402

Please sign in to comment.