Deploy Packages #151
Workflow file for this run
This file contains hidden or 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: Deploy Packages | |
| on: | |
| push: | |
| tags: | |
| - '*' | |
| jobs: | |
| deploy-packages: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| packages: write | |
| id-token: write # Required for OIDC | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup Node | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: 22 | |
| registry-url: https://registry.npmjs.org/ | |
| always-auth: true | |
| - name: Update npm for OIDC trusted publishing | |
| run: npm install -g npm@latest | |
| - uses: pnpm/action-setup@v2 | |
| name: Install pnpm | |
| with: | |
| version: 10 | |
| run_install: false | |
| - uses: gittools/actions/gitversion/setup@v0 | |
| with: | |
| versionSpec: '5.x' | |
| - name: Install Dependencies | |
| run: pnpm install | |
| - name: Check | |
| run: | | |
| pnpm -r check:prettier | |
| pnpm -r check:eslint | |
| - name: Build | |
| run: | | |
| pnpm -r convert | |
| pnpm -r generate | |
| pnpm -r build | |
| - name: Test Uikit Typescript Declaration files (.d.ts) | |
| working-directory: ./packages/uikit | |
| run: pnpm run test:dts | |
| - name: Copy README | |
| run: cp ./README.md packages/react | |
| - name: Gitversion | |
| id: gitversion | |
| uses: gittools/actions/gitversion/execute@v0 | |
| - name: Set Version | |
| run: pnpm -r exec json -f "package.json" -I -e 'this.version = "${{ steps.gitversion.outputs.fullSemVer }}"' | |
| - name: Deploy msdfonts Package | |
| working-directory: ./packages/msdfonts | |
| run: pnpm publish --access public --no-git-checks --tag latest | |
| - name: Deploy Uikit PubSub Package | |
| working-directory: ./packages/pub-sub | |
| run: pnpm publish --access public --no-git-checks --tag latest | |
| - name: Deploy Uikit Vanilla Package | |
| working-directory: ./packages/uikit | |
| run: pnpm publish --access public --no-git-checks --tag latest | |
| - name: Deploy Uikit-Lucide Vanilla Package | |
| working-directory: ./packages/icons/lucide/core | |
| run: pnpm publish --access public --no-git-checks --tag latest | |
| - name: Deploy Uikit-Default Vanilla Package | |
| working-directory: ./packages/kits/default/core | |
| run: pnpm publish --access public --no-git-checks --tag latest | |
| - name: Deploy Uikit-Horizon Vanilla Package | |
| working-directory: ./packages/kits/horizon/core | |
| run: pnpm publish --access public --no-git-checks --tag latest | |
| - name: Deploy Uikit React Package | |
| working-directory: ./packages/react | |
| run: pnpm publish --access public --no-git-checks --tag latest | |
| - name: Deploy Uikit-Lucide React Package | |
| working-directory: ./packages/icons/lucide/react | |
| run: pnpm publish --access public --no-git-checks --tag latest | |
| - name: Deploy Uikit-Default React Package | |
| working-directory: ./packages/kits/default/react | |
| run: pnpm publish --access public --no-git-checks --tag latest | |
| - name: Deploy Uikit-Horizon React Package | |
| working-directory: ./packages/kits/horizon/react | |
| run: pnpm publish --access public --no-git-checks --tag latest |