0.0.9-beta-v4 #185
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish to NPM | |
on: | |
release: | |
types: [ created ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup Node | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '18.x' | |
registry-url: 'https://registry.npmjs.org' | |
- name: Extract version tag | |
id: get_version | |
run: echo "::set-output name=VERSION::${GITHUB_REF#refs/tags/}" | |
- name: Change version for React package 📌 | |
run: | | |
npm version --workspace packages/react --no-git-tag-version ${{ steps.get_version.outputs.VERSION }} | |
- name: Install dependencies | |
run: | | |
npm ci | |
npm run build | |
- name: Tests | |
run: | | |
npm run lint | |
npm run test | |
npm run check-types | |
npm run test:native | |
- name: Publish React package on NPM 📦 | |
run: npm publish --workspace packages/react --access public | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPMJS_TOKEN }} | |
- name: Publish Assets package on NPM 📦 | |
run: npm version --workspace packages/assets --no-git-tag-version ${{ steps.get_version.outputs.VERSION }} && npm publish --workspace packages/assets --access public | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPMJS_TOKEN }} | |
- name: Publish Styles package on NPM 📦 | |
run: npm version --workspace packages/styles --no-git-tag-version ${{ steps.get_version.outputs.VERSION }} && npm publish --workspace packages/styles --access public | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPMJS_TOKEN }} | |
- name: Publish Vanilla package on NPM 📦 | |
run: npm version --workspace packages/vanilla --no-git-tag-version ${{ steps.get_version.outputs.VERSION }} && npm publish --workspace packages/vanilla --access public | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPMJS_TOKEN }} | |