diff --git a/.github/workflows/create-artifact.yml b/.github/workflows/create-artifact.yml index 8684ac7..8e718f9 100644 --- a/.github/workflows/create-artifact.yml +++ b/.github/workflows/create-artifact.yml @@ -15,32 +15,32 @@ jobs: - os: macos arch: x64 runner: macos-15-intel - target: node22-macos-x64 + target: node24-macos-x64 extension: "" - os: macos arch: arm64 runner: macos-latest - target: node22-macos-arm64 + target: node24-macos-arm64 extension: "" - os: linux arch: x64 runner: ubuntu-latest - target: node22-linux-x64 + target: node24-linux-x64 extension: "" - os: linux arch: arm64 runner: ubuntu-24.04-arm - target: node22-linux-arm64 + target: node24-linux-arm64 extension: "" - os: win arch: x64 runner: windows-latest - target: node22-win-x64 + target: node24-win-x64 extension: ".exe" - os: win arch: arm64 runner: windows-11-arm - target: node22-win-arm64 + target: node24-win-arm64 extension: ".exe" steps: @@ -50,7 +50,7 @@ jobs: - name: Set up Node.js uses: actions/setup-node@v3 with: - node-version: "22.x" + node-version: "24.x" - name: Setup safe-chain run: | @@ -63,7 +63,7 @@ jobs: - name: Create binary run: | node build.js ${{ matrix.target }} - pkg ./build/package.json + pkg ./build/package.json --output "./dist/safe-chain${{ matrix.extension }}" - name: Upload binary artifact uses: actions/upload-artifact@v4