From 909ad964a70639ff323995b11fbd73904f781906 Mon Sep 17 00:00:00 2001 From: James Thompson Date: Wed, 4 Feb 2026 11:07:11 +1100 Subject: [PATCH] Resolve ci issues --- .github/workflows/release.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index c5be01d..6fca3f7 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -17,10 +17,10 @@ jobs: - name: Checkout uses: actions/checkout@v6 - - name: Use Node.js 22.x + - name: Use Node.js 24.x uses: actions/setup-node@v6 with: - node-version: 22.x + node-version: 24.x cache: 'npm' # This explicitly sets the version of the npm package to match that of the tag. @@ -37,6 +37,7 @@ jobs: - name: NPM Publish id: publish run: npm publish + continue-on-error: true - name: Create issue on npm publish failure if: ${{ steps.publish.outcome == 'failure' }} @@ -45,11 +46,10 @@ jobs: run: | gh issue create \ --title "NPM Publish step failed for release ${GITHUB_REF_NAME}" \ - --body "The NPM publish step failed for release: ${GITHUB_REF_NAME}. The npm package will need to be manually uploaded to NPM. + --body "The NPM publish step failed for release: ${GITHUB_REF_NAME}. The npm package will need to be manually uploaded to NPM." \ --assignee AndrewSouthpaw - name: Release - if: ${{ always() }} uses: softprops/action-gh-release@v2 with: generate_release_notes: true