chore(deps): update dependency rollup to ^4.52.3 (#5074) #61
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 Please | |
| on: | |
| push: | |
| branches: | |
| - master | |
| # Manual trigger as backup | |
| workflow_dispatch: | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| issues: write | |
| jobs: | |
| release-please: | |
| runs-on: ubuntu-latest | |
| outputs: | |
| release_created: ${{ steps.release.outputs.release_created }} | |
| tag_name: ${{ steps.release.outputs.tag_name }} | |
| version: ${{ steps.release.outputs.version }} | |
| pr: ${{ steps.release.outputs.pr }} | |
| steps: | |
| - name: Run Release Please | |
| id: release | |
| uses: googleapis/release-please-action@v4 | |
| with: | |
| # GitHub token for creating PRs and releases | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| # Use manifest-based configuration (advanced setup) | |
| config-file: release-please-config.json | |
| manifest-file: .release-please-manifest.json | |
| - name: Show Release Info | |
| if: ${{ steps.release.outputs.release_created }} | |
| run: | | |
| echo "Release created: ${{ steps.release.outputs.release_created }}" | |
| echo "Tag: ${{ steps.release.outputs.tag_name }}" | |
| echo "Version: ${{ steps.release.outputs.version }}" | |
| echo "PR: ${{ steps.release.outputs.pr }}" | |
| # Trigger the existing build and publish workflow when a release is created | |
| build-and-publish: | |
| runs-on: ubuntu-latest | |
| needs: release-please | |
| if: ${{ needs.release-please.outputs.release_created }} | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: "20" | |
| cache: "npm" | |
| registry-url: "https://registry.npmjs.org" | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Run linting | |
| run: npm run lint | |
| - name: Run tests | |
| run: npm test | |
| - name: Build packages | |
| run: npm run build | |
| - name: Generate README files | |
| run: npm run readmes | |
| - name: Publish all packages to NPM | |
| env: | |
| NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
| run: npm run npmpub |