Skip to content

extract components

extract components #37

Workflow file for this run

name: Build and Release
on:
push:
branches:
- main
paths-ignore:
- 'README.md'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4.1.1
- name: Set up Node.js
uses: actions/setup-node@v4
- name: Install dependencies
run: npm ci
- name: Bump version
run: |
git config --local user.email "action@github.com"
git config --local user.name "GitHub Action"
npm version patch -m "Bump to %s"
git push
- name: Build app
run: npm run build
- name: Get version
id: packagejson
uses: martinbeentjes/npm-get-version-action@v1.3.1
- name: Upload Release
uses: ncipollo/release-action@v1.13.0
with:
artifacts: 'mui-${{ steps.packagejson.outputs.current-version }}.tar.gz'
token: ${{ secrets.GITHUB_TOKEN }}
tag: ${{ steps.packagejson.outputs.current-version }}