chore: release v3.2.5 #147
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: Publish Package | |
| on: | |
| push: | |
| tags: | |
| - 'v*' | |
| permissions: {} | |
| env: | |
| VITEST_GENERATE_UI_TOKEN: 'true' | |
| VITE_TEST_WATCHER_DEBUG: 'false' | |
| jobs: | |
| publish: | |
| # only run on main, don't trigger in forks | |
| if: github.repository == 'vitest-dev/vitest' | |
| name: Publish Vitest | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write # trusted publishing and changelog requirement | |
| id-token: write # trusted publishing requirement | |
| environment: Release | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| fetch-depth: 0 | |
| persist-credentials: false | |
| - name: Install pnpm | |
| uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4.2.0 | |
| - name: Set node version to 24 | |
| uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0 | |
| with: | |
| node-version: 24 | |
| registry-url: https://registry.npmjs.org/ | |
| # disable cache to avoid cache poisoning | |
| package-manager-cache: false | |
| - name: Install | |
| run: pnpm install --frozen-lockfile --prefer-offline | |
| env: | |
| PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: '1' | |
| - name: Build | |
| run: pnpm build | |
| - name: Publish to npm | |
| run: npm i -g npm@^11.5.2 && pnpm run publish-ci "${GITHUB_REF_NAME}" | |
| - name: Generate Changelog | |
| run: npx changelogithub | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |