From bc30385b727364ff36c852736ab4e6fac022dacb Mon Sep 17 00:00:00 2001 From: AriPerkkio <14806298+AriPerkkio@users.noreply.github.com> Date: Wed, 7 Aug 2024 09:30:15 +0000 Subject: [PATCH 1/2] chore: release CLI v0.1.3 --- packages/cli/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/cli/package.json b/packages/cli/package.json index 1b0fcbfff..a2c638a38 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@tutorialkit/cli", - "version": "0.1.2", + "version": "0.1.3", "description": "Interactive tutorials powered by WebContainer API", "author": "StackBlitz Inc.", "type": "module", From 3513a532bc7f47b8f09f98ca08c48b9235eebb5a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ari=20Perkki=C3=B6?= Date: Wed, 7 Aug 2024 12:36:12 +0300 Subject: [PATCH 2/2] ci: fix cli commit detection --- .github/workflows/integration-test-cli.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/integration-test-cli.yaml b/.github/workflows/integration-test-cli.yaml index 2a90d04af..6580f027c 100644 --- a/.github/workflows/integration-test-cli.yaml +++ b/.github/workflows/integration-test-cli.yaml @@ -8,7 +8,7 @@ jobs: cli-integration-test: name: CLI Integration Tests # Note: `prepare-release.yaml` sets this commit message - if: ${{ contains(github.event.pull_request.title, 'release tutorialkit CLI') || github.event_name == 'workflow_dispatch' }} + if: ${{ contains(github.event.pull_request.title, 'release CLI') || github.event_name == 'workflow_dispatch' }} runs-on: ubuntu-latest steps: - name: Checkout