添加安装Pnpm #10
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: test_release | |
# 触发条件 | |
on: | |
# 手动触发 | |
workflow_dispatch: | |
push: | |
# 匹配特定标签 (refs/tags) | |
tags: | |
- 'v*' # 推送事件匹配 v*, 例如 v1.0,v20.15.10 等来触发工作流 | |
# 具体任务 | |
jobs: | |
# 任务名称 | |
create-release: | |
runs-on: ubuntu-latest | |
outputs: | |
RELEASE_UPLOAD_ID: ${{ steps.create-release.outputs.id }} | |
#任务步骤 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Query version number | |
id: get_version | |
run: | | |
echo "using version tag ${GITHUB_REF:10}" | |
echo ::set-output name=Version::"${GITHUB_REF:10}" | |
- 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: | |
platform: [macos-latest, ubuntu-latest, windows-latest] | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- uses: actions/checkout@v2 | |
# 安装 Node.js | |
- name: Setup node | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 19 | |
- name: Install Pnpm | |
run: npm install -g pnpm | |
# 安装 Rust | |
- name: Install Rust stable | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
# 使用 Rust 缓存,加快安装速度 | |
- uses: Swatinem/rust-cache@v1 | |
- name: install dependencies (ubuntu only) | |
if: matrix.platform == 'ubuntu-latest' | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y libgtk-3-dev webkit2gtk-4.0 libappindicator3-dev librsvg2-dev patchelf | |
# 获取 pnpm 缓存路径 | |
- name: Get pnpm cache directory path | |
id: pnpm-cache-dir-path | |
run: echo "::set-output name=dir::$(pnpm config get cacheFolder)" | |
# 使用 pnpm 缓存 | |
- name: pnpm cache | |
uses: actions/cache@v2 | |
id: pnpm-cache # use this to check for `cache-hit` (`steps.pnpm-cache.outputs.cache-hit != 'true'`) | |
with: | |
path: ${{ steps.pnpm-cache-dir-path.outputs.dir }} | |
key: ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm.lock') }} | |
restore-keys: | | |
${{ runner.os }}-pnpm- | |
# 安装依赖执行构建,以及推送 github release | |
- name: Install app dependencies and build it | |
run: pnpm i && pnpm tauri build | |
- uses: tauri-apps/tauri-action@v0 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
releaseId: ${{ needs.create-release.outputs.RELEASE_UPLOAD_ID }} |