integrations/intellij/v1.28.3 #405
Workflow file for this run
This file contains 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 @previewjs/cli | |
on: | |
release: | |
types: | |
- created | |
jobs: | |
build: | |
if: startsWith(github.ref, 'refs/tags/cli/v') | |
timeout-minutes: 10 | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18.x] | |
steps: | |
- uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4 | |
with: | |
always-auth: true | |
node-version: ${{ matrix.node-version }} | |
- run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc | |
- name: Cache pnpm modules | |
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4 | |
with: | |
path: ~/.pnpm-store | |
key: ${{ runner.os }}-exclude-test-apps-${{ hashFiles('pnpm-lock.yaml') }} | |
restore-keys: | | |
${{ runner.os }}-exclude-test-apps- | |
- uses: pnpm/action-setup@a3252b78c470c02df07e9d59298aecedc3ccdd6d # v3.0.0 | |
with: | |
run_install: | | |
- args: [--filter=\!./framework-plugins/\*/tests/apps/\*] | |
- run: pnpm turbo build --filter="./integrations/cli" | |
- name: Extract version from package.json | |
uses: sergeysova/jq-action@a3f0d4ff59cc1dddf023fc0b325dd75b10deec58 # v2.3.0 | |
id: version | |
with: | |
cmd: "jq .version integrations/cli/package.json -r" | |
- name: Extract version from release name | |
run: echo "VERSION=${GITHUB_REF/refs\/tags\/cli\/v/}" >> $GITHUB_ENV | |
- name: Check that versions match | |
run: '[[ "${{ steps.version.outputs.value }}" == "$VERSION" ]] && echo "Versions match"' | |
- name: Publish | |
run: cd integrations/cli && pnpm publish --no-git-checks --access public |