From 9ccfbc5f9480fadc7bec4c1706483eab3bf90a72 Mon Sep 17 00:00:00 2001 From: lkhsss Date: Sun, 15 Jun 2025 00:10:19 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B5=8B=E8=AF=95=E8=87=AA=E5=8A=A8=E6=9E=84?= =?UTF-8?q?=E5=BB=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/build.yml | 122 +++++++++++++++++++----------- .github/workflows/build.yml.2.bak | 63 +++++++++++++++ 2 files changed, 141 insertions(+), 44 deletions(-) create mode 100644 .github/workflows/build.yml.2.bak diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 958d26f..13d8eec 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,63 +1,97 @@ -name: 'Build' - +# 可选,将显示在 GitHub 存储库的“操作”选项卡中的工作流名称 +name: Release CI + +# 指定此工作流的触发器 on: push: + # 匹配特定标签 (refs/tags) tags: - - "v*.*.*" - workflow_dispatch: - -# This workflow will trigger on each push to the `release` branch to create or update a GitHub release, build your app, and upload the artifacts to the release. - + - 'v*' # 推送事件匹配 v*, 例如 v1.0,v20.15.10 等来触发工作流 + +# 需要运行的作业组合 jobs: - publish-tauri: - permissions: - contents: write + # 任务:创建 release 版本 + create-release: + runs-on: ubuntu-latest + outputs: + RELEASE_UPLOAD_ID: ${{ steps.create_release.outputs.id }} + + steps: + - uses: actions/checkout@v4 + # 查询版本号(tag) + - name: Query version number + id: get_version + shell: bash + run: | + echo "using version tag ${GITHUB_REF:10}" + echo ::set-output name=version::"${GITHUB_REF:10}" + + # 根据查询到的版本号创建 release + - name: Create Release + id: create_release + uses: actions/create-release@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + tag_name: '${{ steps.get_version.outputs.VERSION }}' + release_name: 'app ${{ steps.get_version.outputs.VERSION }}' + body: 'See the assets to download this version and install.' + + # 编译 Tauri + build-tauri: + needs: create-release strategy: fail-fast: false matrix: - include: - - platform: 'macos-latest' # for Arm based macs (M1 and above). - args: '--target aarch64-apple-darwin' - - platform: 'macos-latest' # for Intel based macs. - args: '--target x86_64-apple-darwin' - - platform: 'ubuntu-22.04' # for Tauri v1 you could replace this with ubuntu-20.04. - args: '' - - platform: 'windows-latest' - args: '' - + platform: [macos-latest, ubuntu-latest, windows-latest] + runs-on: ${{ matrix.platform }} steps: - - uses: actions/checkout@v4 - - - name: setup node + - uses: actions/checkout@v2 + + # 安装 Node.js + - name: Setup node uses: actions/setup-node@v4 with: - node-version: lts/* - - - name: install Rust stable - uses: dtolnay/rust-toolchain@stable + node-version: "22.x" + + # 安装 Rust + - name: Install Rust stable + uses: actions-rs/toolchain@v1 with: - # Those targets are only used on macos runners so it's in an `if` to slightly speed up windows and linux builds. - targets: ${{ matrix.platform == 'macos-latest' && 'aarch64-apple-darwin,x86_64-apple-darwin' || '' }} - + toolchain: stable + + # 使用 Rust 缓存,加快安装速度 + - uses: Swatinem/rust-cache@v1 + - name: install dependencies (ubuntu only) - if: matrix.platform == 'ubuntu-22.04' # This must match the platform value defined above. + if: matrix.platform == 'ubuntu-latest' run: | sudo apt-get update - sudo apt-get install -y libwebkit2gtk-4.0-dev libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf - # webkitgtk 4.0 is for Tauri v1 - webkitgtk 4.1 is for Tauri v2. - # You can remove the one that doesn't apply to your app to speed up the workflow a bit. - - - name: install frontend dependencies - run: yarn install # change this to npm, pnpm or bun depending on which one you use. - + sudo apt-get install -y libgtk-3-dev webkit2gtk-4.0 libappindicator3-dev librsvg2-dev patchelf + + + # 获取 yarn 缓存路径 + - name: Get yarn cache directory path + id: yarn-cache-dir-path + run: echo "::set-output name=dir::$(yarn config get cacheFolder)" + + # 使用 yarn 缓存 + - name: Yarn cache + uses: actions/cache@v2 + id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`) + with: + path: ${{ steps.yarn-cache-dir-path.outputs.dir }} + key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} + restore-keys: | + ${{ runner.os }}-yarn- + + # 安装依赖执行构建,以及推送 github release + - name: Install app dependencies and build it + # 这里的pubhome要修改为你package.json里面配置的编译命令 + run: yarn && yarn pubhome - uses: tauri-apps/tauri-action@v0 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: - tagName: app-v__VERSION__ # the action automatically replaces \_\_VERSION\_\_ with the app version. - releaseName: 'App v__VERSION__' - releaseBody: 'See the assets to download this version and install.' - releaseDraft: true - prerelease: false - args: ${{ matrix.args }} \ No newline at end of file + releaseId: ${{ needs.create-release.outputs.RELEASE_UPLOAD_ID }} \ No newline at end of file diff --git a/.github/workflows/build.yml.2.bak b/.github/workflows/build.yml.2.bak new file mode 100644 index 0000000..958d26f --- /dev/null +++ b/.github/workflows/build.yml.2.bak @@ -0,0 +1,63 @@ +name: 'Build' + +on: + push: + tags: + - "v*.*.*" + workflow_dispatch: + +# This workflow will trigger on each push to the `release` branch to create or update a GitHub release, build your app, and upload the artifacts to the release. + +jobs: + publish-tauri: + permissions: + contents: write + strategy: + fail-fast: false + matrix: + include: + - platform: 'macos-latest' # for Arm based macs (M1 and above). + args: '--target aarch64-apple-darwin' + - platform: 'macos-latest' # for Intel based macs. + args: '--target x86_64-apple-darwin' + - platform: 'ubuntu-22.04' # for Tauri v1 you could replace this with ubuntu-20.04. + args: '' + - platform: 'windows-latest' + args: '' + + runs-on: ${{ matrix.platform }} + steps: + - uses: actions/checkout@v4 + + - name: setup node + uses: actions/setup-node@v4 + with: + node-version: lts/* + + - name: install Rust stable + uses: dtolnay/rust-toolchain@stable + with: + # Those targets are only used on macos runners so it's in an `if` to slightly speed up windows and linux builds. + targets: ${{ matrix.platform == 'macos-latest' && 'aarch64-apple-darwin,x86_64-apple-darwin' || '' }} + + - name: install dependencies (ubuntu only) + if: matrix.platform == 'ubuntu-22.04' # This must match the platform value defined above. + run: | + sudo apt-get update + sudo apt-get install -y libwebkit2gtk-4.0-dev libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf + # webkitgtk 4.0 is for Tauri v1 - webkitgtk 4.1 is for Tauri v2. + # You can remove the one that doesn't apply to your app to speed up the workflow a bit. + + - name: install frontend dependencies + run: yarn install # change this to npm, pnpm or bun depending on which one you use. + + - uses: tauri-apps/tauri-action@v0 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + tagName: app-v__VERSION__ # the action automatically replaces \_\_VERSION\_\_ with the app version. + releaseName: 'App v__VERSION__' + releaseBody: 'See the assets to download this version and install.' + releaseDraft: true + prerelease: false + args: ${{ matrix.args }} \ No newline at end of file