Refactor class name notation from dot/colon to dot-only format (#1461) #958
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 packages (changeset) | |
| on: | |
| push: | |
| branches: | |
| - master | |
| - stable | |
| - next | |
| env: | |
| NPM_CONFIG_PROVENANCE: true | |
| HUSKY: 0 | |
| concurrency: ${{ github.workflow }}-${{ github.ref }} | |
| jobs: | |
| release: | |
| name: Release | |
| permissions: | |
| id-token: write | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd | |
| with: | |
| fetch-depth: 0 | |
| token: ${{ secrets.IMJS_ADMIN_GH_TOKEN }} | |
| - name: Install pnpm | |
| uses: pnpm/action-setup@0e279bb959325dab635dd2c09392533439d90093 | |
| - name: Use Node.js 24 | |
| uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e | |
| with: | |
| node-version: 24.15.0 | |
| registry-url: https://registry.npmjs.org/ | |
| - name: Install dependencies | |
| run: pnpm install | |
| - name: Create release PR or publish to npm | |
| uses: changesets/action@63a615b9cd06ba9a3e6d13796c7fbcb080a60a0b | |
| with: | |
| publish: pnpm release | |
| title: Release packages [publish docs] | |
| commit: Release packages [publish docs] | |
| commitMode: github-api | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.IMJS_ADMIN_GH_TOKEN }} | |
| NODE_AUTH_TOKEN: ${{ secrets.NPMJS_PUBLISH_ITWIN }} | |
| GIT_AUTHOR_NAME: imodeljs-admin | |
| GIT_AUTHOR_EMAIL: imodeljs-admin@users.noreply.github.com | |
| GIT_COMMITTER_NAME: imodeljs-admin | |
| GIT_COMMITTER_EMAIL: imodeljs-admin@users.noreply.github.com |