diff --git a/.github/workflows/integration-test-cli.yaml b/.github/workflows/integration-test-cli.yaml index dc960dd93..58442b6ed 100644 --- a/.github/workflows/integration-test-cli.yaml +++ b/.github/workflows/integration-test-cli.yaml @@ -8,8 +8,15 @@ on: - main jobs: - cli-integration-test: + skip: name: CLI Integration Tests + runs-on: ubuntu-latest + steps: + - name: skip + run: echo skip + + cli-integration-test: + name: CLI Integration Test Matrix # Note: `prepare-release.yaml` sets this commit message if: ${{ contains(github.event.pull_request.title, 'release CLI') || github.event_name == 'workflow_dispatch' || github.event_name == 'push' }} diff --git a/packages/cli/package.json b/packages/cli/package.json index 637647282..f468943f5 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@tutorialkit/cli", - "version": "1.1.0", + "version": "1.1.1", "description": "Interactive tutorials powered by WebContainer API", "author": "StackBlitz Inc.", "type": "module",