chore: 更新action
Some checks failed
Build and push Docker images / docker (push) Has been cancelled
Mirror and run GitLab CI / build (push) Has been cancelled
Package Node.js project into an executable / node${{ matrix.nodev }}-${{ matrix.platform }}-x64 (18, linux) (push) Has been cancelled
Package Node.js project into an executable / node${{ matrix.nodev }}-${{ matrix.platform }}-x64 (18, macos) (push) Has been cancelled
Package Node.js project into an executable / node${{ matrix.nodev }}-${{ matrix.platform }}-x64 (18, win) (push) Has been cancelled
Package Node.js project into an executable / node18-${{ matrix.platform }}-arm64 (alpine) (push) Has been cancelled
Package Node.js project into an executable / node18-${{ matrix.platform }}-arm64 (linux) (push) Has been cancelled
Package Node.js project into an executable / node18-${{ matrix.platform }}-arm64 (linuxstatic) (push) Has been cancelled

This commit is contained in:
shanmite 2026-05-29 15:22:30 +08:00
parent ad6289006f
commit e0c18b0a1a
3 changed files with 21 additions and 23 deletions

View File

@ -16,18 +16,18 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
uses: docker/setup-qemu-action@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v4
- name: Login to DockerHub
uses: docker/login-action@v2
uses: docker/login-action@v4
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v3
uses: docker/build-push-action@v7
with:
push: true
tags: ${{ secrets.DOCKERHUB_REPO }}

View File

@ -10,7 +10,7 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Mirror + trigger CI

View File

@ -26,31 +26,29 @@ jobs:
nodev: 18
- platform: win
nodev: 18
# - platform: win
# nodev: 12
steps:
- name: "Checkout codes"
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: "Use Node.js"
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version: "*"
- name: "Pkg this"
run: |
npm run pkg "node${{ matrix.nodev }}-${{ matrix.platform }}-x64"
- name: "Upload to artifact"
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: node${{ matrix.nodev }}-${{ matrix.platform }}-x64
path: "dist/*.zip"
- name: "Upload to release draft"
uses: xresloader/upload-to-github-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
uses: softprops/action-gh-release@v3
with:
file: "dist/*.zip"
files: "dist/*.zip"
tag_name: "v2"
overwrite: true
draft: true
overwrite_files: true
token: ${{ secrets.GH_TOKEN }}
arm64:
runs-on: ubuntu-latest
name: node18-${{ matrix.platform }}-arm64
@ -62,20 +60,20 @@ jobs:
- platform: alpine
steps:
- name: "Checkout codes"
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: "Pkg this"
run: |
npm run pkg "node18-${{ matrix.platform }}-arm64"
- name: "Upload to artifact"
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: node18-${{ matrix.platform }}-arm64
path: "dist/*.zip"
- name: "Upload to release draft"
uses: xresloader/upload-to-github-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
uses: softprops/action-gh-release@v3
with:
file: "dist/*.zip"
files: "dist/*.zip"
tag_name: "v2"
overwrite: true
draft: true
overwrite_files: true
token: ${{ secrets.GH_TOKEN }}