Remove file location configuration for legacy create component template #44
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 | |
| jobs: | |
| release: | |
| name: Release | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| packages: write | |
| pull-requests: write | |
| strategy: | |
| matrix: | |
| node-version: [22] | |
| yarn-version: [latest] | |
| steps: | |
| - name: Checkout Repo | |
| uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| cache: 'yarn' | |
| registry-url: 'https://npm.pkg.github.com' | |
| - name: Install dependencies | |
| run: yarn install --frozen-lockfile | |
| - name: Typescript compile | |
| run: yarn tsc | |
| - name: Build packages | |
| run: yarn build:all | |
| - name: Create Release Pull Request or Publish to GitHub Packages | |
| 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 }} | |
| NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |