From 897070706dd1eaf185da11f4bf860f7d3af3b0ef Mon Sep 17 00:00:00 2001 From: Janni Turunen Date: Wed, 14 Jan 2026 16:00:07 +0200 Subject: [PATCH] fix(ci): resolve YAML indentation syntax errors in release workflow --- .github/workflows/release.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 455aaae..c035171 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -40,10 +40,10 @@ jobs: fetch-depth: 0 token: ${{ secrets.GITHUB_TOKEN }} - - uses: actions/setup-node@v4 - with: - node-version: '20' - cache: 'npm' + - uses: actions/setup-node@v4 + with: + node-version: '20' + cache: 'npm' - name: Install dependencies run: npm ci @@ -51,9 +51,9 @@ jobs: - name: Build run: npm run build - - name: Release - run: npx semantic-release - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} - NPM_TOKEN: ${{ secrets.NPM_TOKEN }} + - name: Release + run: npx semantic-release + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} + NPM_TOKEN: ${{ secrets.NPM_TOKEN }}