From 27bb9b5e53c1a5cb2158f0f76573d102cd684de6 Mon Sep 17 00:00:00 2001 From: Migration Bot Date: Tue, 16 Sep 2025 09:12:57 +0200 Subject: [PATCH] Update organization secrets to use MK_ prefix Updated secrets: - NPM_TOKEN -> MK_NPM_TOKEN --- .github/workflows/release.yml | 54 +++++++++++++++++------------------ 1 file changed, 27 insertions(+), 27 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a6e1ede..0250b9b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1,27 +1,27 @@ -name: Release -on: - push: - branches: - - main - - beta -jobs: - release: - name: Release - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v2 - with: - fetch-depth: 0 - persist-credentials: false - - name: Setup Node.js - uses: actions/setup-node@v2 - with: - node-version: lts/* - - name: Install dependencies - run: npm ci --ignore-scripts - - name: Release - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - NPM_TOKEN: ${{ secrets.NPM_TOKEN }} - run: npx semantic-release +name: Release +on: + push: + branches: + - main + - beta +jobs: + release: + name: Release + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v2 + with: + fetch-depth: 0 + persist-credentials: false + - name: Setup Node.js + uses: actions/setup-node@v2 + with: + node-version: lts/* + - name: Install dependencies + run: npm ci --ignore-scripts + - name: Release + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + NPM_TOKEN: ${{ secrets.MK_NPM_TOKEN }} + run: npx semantic-release