Changes
3 changed files (+27/-2)
-
-
@@ -0,0 +1,23 @@name: Publish to NPM on: push: tags: - v* jobs: publish_npm: name: Publish to NPM runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v3 - name: Setup Node.js uses: actions/setup-node@v3 with: node-version-file: .nvmrc cache: yarn - name: Install dependencies run: yarn install --immutable - name: Publish the package run: yarn npm publish --access public
-
-
-
@@ -49,4 +49,6 @@ ```## Release workflow (WIP) 1. Bump the version by using `npm version` 2. Push the automatically created git commit and git tag 3. CI build and push the version to npm, wait for it
-
-
-
@@ -60,7 +60,7 @@ "build:default": "yarn build:esm && yarn build:cjs","build": "yarn build:default", "storybook": "start-storybook -p 6007", "build-storybook": "build-storybook", "prepublishOnly": "yarn build", "prepack": "yarn build", "postinstallDev": "husky install" }, "prettier": {},
-