This repository was archived by the owner on Mar 19, 2026. It is now read-only.
chore(deps): bump @backstage/plugin-techdocs-node from 1.13.10 to 1.1… #133
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 Build | |
| on: | |
| push: | |
| branches: [main] | |
| permissions: | |
| id-token: write # Used by npm Trusted Publishing | |
| contents: read | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| env: | |
| NODE_OPTIONS: --max-old-space-size=4096 | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| - run: corepack enable | |
| - run: yarn install --immutable | |
| - run: yarn tsc | |
| - run: yarn build:all | |
| - name: Create Release Pull Request or Publish to npm | |
| id: changesets | |
| uses: changesets/action@v1 | |
| with: | |
| title: Version Packages - plugins | |
| version: yarn release:version | |
| publish: yarn release:publish | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| - run: ./scripts/build-dynamic-plugins.sh | |
| - name: Upload dynamic plugin to release | |
| run: ./scripts/upload-dynamic-plugins.js '${{ steps.changesets.outputs.publishedPackages }}' |