From d2e8f946a0bae86cd35afa100c2c8c0daf698903 Mon Sep 17 00:00:00 2001 From: Panagiotis Papadopoulos Date: Fri, 14 Feb 2025 08:35:46 +0100 Subject: [PATCH] chore(scripts): namespace "chore:ci-update-nightly-version" --- .github/workflows/nightly.yml | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 2b1fbe57e..f7cee700a 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -38,7 +38,7 @@ jobs: shell: bash run: npm ci - name: Update nightly version - run: npm run ci-update-nightly-version + run: npm run chore:ci-update-nightly-version - name: Run the build uses: ./.github/actions/build-electron with: diff --git a/package.json b/package.json index 73af47986..29577415c 100644 --- a/package.json +++ b/package.json @@ -54,7 +54,7 @@ "integration-mem-db-dev": "cross-env TRILIUM_INTEGRATION_TEST=memory TRILIUM_PORT=8082 TRILIUM_ENV=dev TRILIUM_DATA_DIR=./integration-tests/db nodemon src/main.ts", "generate-document": "cross-env nodemon ./bin/generate_document.ts 1000", "generate-openapi": "node bin/generate-openapi.js", - "ci-update-nightly-version": "tsx ./bin/update-nightly-version.ts", + "chore:ci-update-nightly-version": "tsx ./bin/update-nightly-version.ts", "prettier-check": "prettier . --check", "prettier-fix": "prettier . --write" },