discover skills in Yarn Berry PnP projects + speed up skill discovery… #281
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: | |
| push: | |
| branches: [main, '*-pre', '*-maint'] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: false | |
| env: | |
| NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }} | |
| SERVER_PRESET: 'node-server' | |
| permissions: | |
| contents: read | |
| jobs: | |
| release: | |
| name: Release | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 45 | |
| permissions: | |
| contents: write | |
| id-token: write | |
| pull-requests: write | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| fetch-depth: 0 | |
| persist-credentials: true # changesets/action pushes Version PR commits | |
| - name: Check for changesets | |
| id: changesets | |
| run: | | |
| CHANGESET_FILES=$(ls .changeset/*.md 2>/dev/null | grep -v README.md || true) | |
| if [ -z "$CHANGESET_FILES" ]; then | |
| echo "has_changesets=false" >> "$GITHUB_OUTPUT" | |
| else | |
| echo "has_changesets=true" >> "$GITHUB_OUTPUT" | |
| fi | |
| - name: Start Nx Agents | |
| if: steps.changesets.outputs.has_changesets == 'true' | |
| run: npx nx-cloud start-ci-run --distribute-on=".nx/workflows/dynamic-changesets.yaml" | |
| - name: Setup Tools | |
| uses: TanStack/config/.github/setup@e4b48f16568324f76f467aa4c2aac2f05db632c3 # main | |
| - name: Run Tests | |
| if: steps.changesets.outputs.has_changesets == 'true' | |
| run: pnpm run test:ci --parallel=3 | |
| - name: Stop Nx Agents | |
| if: ${{ always() && steps.changesets.outputs.has_changesets == 'true' }} | |
| run: npx nx-cloud stop-all-agents | |
| - name: Enter Pre-Release Mode | |
| if: "contains(github.ref_name, '-pre') && !hashFiles('.changeset/pre.json')" | |
| run: pnpm changeset pre enter pre | |
| - name: Determine dist-tag | |
| id: dist-tag | |
| run: | | |
| BRANCH="${GITHUB_REF_NAME}" | |
| if [[ "$BRANCH" == *-pre ]]; then | |
| echo "prerelease=true" >> "$GITHUB_OUTPUT" | |
| elif [[ "$BRANCH" == *-maint ]]; then | |
| echo "tag=maint" >> "$GITHUB_OUTPUT" | |
| else | |
| echo "latest=true" >> "$GITHUB_OUTPUT" | |
| fi | |
| - name: Create Release Pull Request or Publish | |
| id: changesets-action | |
| uses: changesets/action@63a615b9cd06ba9a3e6d13796c7fbcb080a60a0b # v1.8.0 | |
| with: | |
| version: pnpm run changeset:version | |
| publish: pnpm run changeset:publish ${{ steps.dist-tag.outputs.tag && format('--tag {0}', steps.dist-tag.outputs.tag) }} | |
| title: 'ci: Version Packages' | |
| commit: 'ci: changeset release' | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Create GitHub Release | |
| if: steps.changesets-action.outputs.published == 'true' | |
| run: node scripts/create-github-release.mjs ${PRERELEASE_ARG} ${LATEST_ARG} | |
| env: | |
| PRERELEASE_ARG: ${{ steps.dist-tag.outputs.prerelease == 'true' && '--prerelease' }} | |
| LATEST_ARG: ${{ steps.dist-tag.outputs.latest == 'true' && '--latest' }} | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |