diff options
| author | 2026-01-18 17:07:55 +0800 | |
|---|---|---|
| committer | 2026-01-18 17:07:55 +0800 | |
| commit | 33eb32040999a488bdf0abcadd6e844decd9151a (patch) | |
| tree | a3b833dae3cb64f2aa1df2f4aa4054fb58586743 /.github/workflows/semifold-ci.yaml | |
| parent | e8818ae5a52f325a3b79e14ddff2874b7315e272 (diff) | |
| download | DropOut-33eb32040999a488bdf0abcadd6e844decd9151a.tar.gz DropOut-33eb32040999a488bdf0abcadd6e844decd9151a.zip | |
chore: add tauri cli
Diffstat (limited to '.github/workflows/semifold-ci.yaml')
| -rw-r--r-- | .github/workflows/semifold-ci.yaml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/semifold-ci.yaml b/.github/workflows/semifold-ci.yaml index 0c5fd5b..fbf38d8 100644 --- a/.github/workflows/semifold-ci.yaml +++ b/.github/workflows/semifold-ci.yaml @@ -21,23 +21,23 @@ jobs: matrix: include: - platform: "ubuntu-22.04" - name: "Linux x86_64" + name: "Linux x86-64" target: "x86_64-unknown-linux-gnu" args: "--target x86_64-unknown-linux-gnu" - platform: "ubuntu-24.04-arm" - name: "Linux ARM64" + name: "Linux Arm64" target: "aarch64-unknown-linux-gnu" args: "--target aarch64-unknown-linux-gnu" - platform: "macos-latest" - name: "macOS ARM64" + name: "macOS Arm64" target: "aarch64-apple-darwin" args: "--target aarch64-apple-darwin" - platform: "windows-latest" - name: "Windows x86_64" + name: "Windows x86-64" target: "x86_64-pc-windows-msvc" args: "--target x86_64-pc-windows-msvc" - platform: "windows-11-arm" - name: "Windows ARM64" + name: "Windows Arm64" target: "aarch64-pc-windows-msvc" args: "--target aarch64-pc-windows-msvc" |