chore(release): 1.7.20 (#1562) #113
Workflow file for this run
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: | |
| tags: | |
| - 'v*' | |
| permissions: | |
| contents: write | |
| id-token: write | |
| jobs: | |
| release: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: '22' | |
| registry-url: 'https://registry.npmjs.org' | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Type check | |
| run: npx tsc --noEmit | |
| # Build before the manifest drift gate: adapter modules import | |
| # @jackwener/opencli/* through package exports, which resolve to dist/. | |
| # A fresh release checkout has no dist/ until the full build runs. | |
| - name: Build package and verify cli-manifest.json is up-to-date | |
| run: | | |
| npm run build | |
| if ! git diff --exit-code -- cli-manifest.json; then | |
| echo "::error::cli-manifest.json drift detected at release time. Run 'npm run build' locally and commit the result before tagging." | |
| exit 1 | |
| fi | |
| - name: Install extension dependencies | |
| run: npm ci | |
| working-directory: extension | |
| - name: Build extension | |
| run: npm run build | |
| working-directory: extension | |
| - name: Package extension | |
| run: npm run package:release -- --out ../extension-package | |
| working-directory: extension | |
| - name: Create extension ZIP | |
| run: | | |
| EXT_VERSION=$(jq -r .version extension/package.json) | |
| cd extension-package | |
| zip -r ../opencli-extension-v${EXT_VERSION}.zip . | |
| - name: Create GitHub Release | |
| uses: softprops/action-gh-release@v3.0.0 | |
| with: | |
| generate_release_notes: true | |
| files: | | |
| opencli-extension-v*.zip | |
| - name: Publish to npm | |
| run: npm publish --provenance --access public | |
| env: | |
| NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
| - name: Trigger website rebuild | |
| uses: peter-evans/repository-dispatch@v4 | |
| with: | |
| token: ${{ secrets.WEBSITE_DEPLOY_TOKEN }} | |
| repository: jackwener/opencli-website | |
| event-type: version-released |