This repository was archived by the owner on Dec 12, 2025. It is now read-only.
Release #79
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: Release | |
| on: | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.workflow }} | |
| jobs: | |
| release: | |
| if: github.ref == 'refs/heads/main' && github.actor == 'phuctm97' && github.triggering_actor == 'phuctm97' | |
| name: ${{ github.workflow }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| token: ${{ secrets.PERSONAL_ACCESS_TOKEN }} | |
| - uses: fregante/setup-git-user@v2 | |
| - uses: pnpm/action-setup@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| cache: pnpm | |
| node-version-file: .nvmrc | |
| - run: pnpm install | |
| - run: pnpm exec nx run-many -t typecheck lint build | |
| env: | |
| NODE_OPTIONS: --max-old-space-size=4096 | |
| - run: pnpm exec nx release --skip-publish | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }} |