From 1ef40f74c0c1cf9ec77fcc8010f1e896a4fbb86c Mon Sep 17 00:00:00 2001 From: Joel Wetzell Date: Sat, 8 Nov 2025 10:54:50 -0600 Subject: [PATCH] update release action to look at nvmrc file for node version --- .github/workflows/release.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 71f5002..7bfdc89 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -10,9 +10,9 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - uses: actions/setup-node@v4 + - uses: actions/setup-node@v6 with: - node-version: 20 + node-version-file: .nvmrc cache: 'npm' - run: npm ci - run: npm run release @@ -20,9 +20,9 @@ jobs: runs-on: windows-latest steps: - uses: actions/checkout@v4 - - uses: actions/setup-node@v4 + - uses: actions/setup-node@v6 with: - node-version: 20 + node-version-file: .nvmrc cache: 'npm' - run: npm ci - run: npm run release @@ -36,9 +36,9 @@ jobs: APPLE_APP_SPECIFIC_PASSWORD: ${{ secrets.APPLE_ID_PASSWORD }} steps: - uses: actions/checkout@v4 - - uses: actions/setup-node@v4 + - uses: actions/setup-node@v6 with: - node-version: 20 + node-version-file: .nvmrc cache: 'npm' - run: npm ci - run: npm run release