From c1009735906b886c2b7d45ee2e02b69660d025a1 Mon Sep 17 00:00:00 2001 From: xRain Date: Tue, 31 Mar 2026 06:51:46 +0800 Subject: [PATCH] fix ci --- .github/workflows/publish.yml | 16 +++------------- 1 file changed, 3 insertions(+), 13 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 17eb800..2c0cf57 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -13,13 +13,11 @@ jobs: runs-on: ubuntu-latest steps: - - name: Checkout - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - - name: Setup Node.js - uses: actions/setup-node@v4 + - uses: actions/setup-node@v6 with: - node-version: "20" + node-version: "24" registry-url: "https://registry.npmjs.org" - name: Get version from tag @@ -39,11 +37,3 @@ jobs: - name: Publish to npm run: npm publish --access public - - - name: Create GitHub Release - uses: softprops/action-gh-release@v1 - with: - body: | - ## @simcu/simapi v${{ steps.version.outputs.version }} - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}