Release #31
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 | |
| permissions: | |
| contents: read | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| release_version: | |
| description: 'Version' | |
| required: true | |
| release_tag: | |
| description: 'Tag' | |
| required: true | |
| default: 'latest' | |
| type: choice | |
| options: | |
| - latest | |
| - next | |
| dry_run: | |
| description: 'Dry Run' | |
| required: true | |
| default: true | |
| type: boolean | |
| jobs: | |
| version: | |
| name: Version and Publish | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write # to be able to publish a GitHub release | |
| id-token: write # provenance | |
| steps: | |
| - name: Generate bot app token | |
| id: generate_token | |
| uses: actions/create-github-app-token@v1 | |
| with: | |
| app-id: ${{ secrets.NGRX_APP_ID }} | |
| private-key: ${{ secrets.NGRX_APP_PRIVATE_KEY }} | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| token: ${{ steps.generate_token.outputs.token }} | |
| fetch-depth: 0 | |
| persist-credentials: false | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version-file: .node-version | |
| - run: npm install --global [email protected] | |
| - run: corepack enable | |
| - run: pnpm --version | |
| - name: Install dependencies | |
| uses: actions/setup-node@v3 | |
| with: | |
| cache: 'pnpm' | |
| cache-dependency-path: '**/pnpm-lock.yaml' | |
| - name: Install | |
| run: pnpm install --frozen-lockfile --prefer-offline | |
| - name: Update Versions | |
| run: pnpm run update:versions ${{ inputs.release_version }} | |
| - name: Tag Release | |
| env: | |
| GIT_AUTHOR_EMAIL: "${{ secrets.RELEASE_EMAIL }}" | |
| GIT_COMMITTER_EMAIL: "${{ secrets.RELEASE_EMAIL }}" | |
| GITHUB_TOKEN: ${{ steps.generate_token.outputs.token }} | |
| run: | | |
| git config --global user.email ${{ secrets.RELEASE_EMAIL }} | |
| git config --global user.name "${{ secrets.RELEASE_NAME }}" | |
| git status | |
| git commit -am "chore: release ${{ inputs.release_version }}" | |
| git tag ${{ inputs.release_version }} | |
| git push https://x-access-token:${{ steps.generate_token.outputs.token }}@github.com/ngrx/platform.git --follow-tags $(${{ inputs.dry_run == true }} && echo '--dry-run' || echo '') | |
| - name: Build Packages | |
| run: pnpm run build --exclude=docs-app,standalone-app,example-app,www --skip-nx-cache | |
| - name: Release | |
| env: | |
| NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
| DRY_RUN: ${{ inputs.dry_run }} | |
| RELEASE_TAG: ${{ inputs.release_tag }} | |
| RELEASE_VERSION: ${{ inputs.release_version }} | |
| run: npx tsx ./build/publish-release.ts |