From 9c8a88765de95849803f4722cb6cec1001da547b Mon Sep 17 00:00:00 2001 From: pamapa Date: Wed, 2 Oct 2024 17:07:50 +0200 Subject: [PATCH] chore: make sure CI runs on branch release/v2 --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f411aeef..456e32a1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,7 +2,7 @@ name: CI on: push: - branches: [main] + branches: [release/v2] pull_request: jobs: @@ -25,7 +25,7 @@ jobs: key: build-${{ github.head_ref }}-${{ github.sha }} restore-keys: | build-${{ github.head_ref }}- - build-refs/heads/main- + build-refs/heads/release/v2- - run: npm ci - run: npm pack --dry-run @@ -56,7 +56,7 @@ jobs: key: test-${{ github.head_ref }}-${{ github.sha }} restore-keys: | test-${{ github.head_ref }}- - test-refs/heads/main- + test-refs/heads/release/v2- - run: npm ci - run: npm run lint