chore:made changes to convert the progress components to their respec… #2
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 | |
on: | |
push: | |
branches: | |
- "main" | |
concurrency: ${{github.workflow}}-${{github.ref}} | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: npm/action-setup@v2 | |
with: | |
version: 9.6.1 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 20.x | |
cache: 'npm' | |
- run: npm ci | |
- name: Create Release Pull Reques or Publish | |
id: changesets | |
uses: changesets/action@v1 | |
with: | |
publish: npm run build |