ci: add linux dev bundle
This commit is contained in:
28
.github/workflows/dev.yml
vendored
28
.github/workflows/dev.yml
vendored
@@ -18,6 +18,11 @@ on:
|
|||||||
required: false
|
required: false
|
||||||
type: boolean
|
type: boolean
|
||||||
default: true
|
default: true
|
||||||
|
run_linux_amd64:
|
||||||
|
description: "运行 Linux amd64"
|
||||||
|
required: false
|
||||||
|
type: boolean
|
||||||
|
default: true
|
||||||
|
|
||||||
permissions: write-all
|
permissions: write-all
|
||||||
env:
|
env:
|
||||||
@@ -50,6 +55,11 @@ jobs:
|
|||||||
bundle: nsis
|
bundle: nsis
|
||||||
id: windows-arm64
|
id: windows-arm64
|
||||||
input: run_windows_arm64
|
input: run_windows_arm64
|
||||||
|
- os: linux-latest
|
||||||
|
target: x86_64-unknown-linux-gnu
|
||||||
|
bundle: deb
|
||||||
|
id: linux-amd64
|
||||||
|
input: run_linux_amd64
|
||||||
|
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
steps:
|
steps:
|
||||||
@@ -78,6 +88,12 @@ jobs:
|
|||||||
cache-all-crates: true
|
cache-all-crates: true
|
||||||
shared-key: autobuild-shared
|
shared-key: autobuild-shared
|
||||||
|
|
||||||
|
- name: Install dependencies (ubuntu only)
|
||||||
|
if: matrix.os == 'linux-latest' && github.event.inputs[matrix.input] == 'true'
|
||||||
|
run: |
|
||||||
|
sudo apt-get update
|
||||||
|
sudo apt-get install -y libxslt1.1 libwebkit2gtk-4.1-dev libayatana-appindicator3-dev librsvg2-dev patchelf
|
||||||
|
|
||||||
- uses: pnpm/action-setup@v4
|
- uses: pnpm/action-setup@v4
|
||||||
name: Install pnpm
|
name: Install pnpm
|
||||||
if: github.event.inputs[matrix.input] == 'true'
|
if: github.event.inputs[matrix.input] == 'true'
|
||||||
@@ -119,7 +135,7 @@ jobs:
|
|||||||
tauriScript: pnpm
|
tauriScript: pnpm
|
||||||
args: --target ${{ matrix.target }} -b ${{ matrix.bundle }}
|
args: --target ${{ matrix.target }} -b ${{ matrix.bundle }}
|
||||||
|
|
||||||
- name: Upload Artifacts
|
- name: Upload Artifacts (macOS)
|
||||||
if: matrix.os == 'macos-latest' && github.event.inputs[matrix.input] == 'true'
|
if: matrix.os == 'macos-latest' && github.event.inputs[matrix.input] == 'true'
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
@@ -127,10 +143,18 @@ jobs:
|
|||||||
path: src-tauri/target/${{ matrix.target }}/release/bundle/dmg/*.dmg
|
path: src-tauri/target/${{ matrix.target }}/release/bundle/dmg/*.dmg
|
||||||
if-no-files-found: error
|
if-no-files-found: error
|
||||||
|
|
||||||
- name: Upload Artifacts
|
- name: Upload Artifacts (Windows)
|
||||||
if: matrix.os == 'windows-latest' && github.event.inputs[matrix.input] == 'true'
|
if: matrix.os == 'windows-latest' && github.event.inputs[matrix.input] == 'true'
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: ${{ matrix.target }}
|
name: ${{ matrix.target }}
|
||||||
path: src-tauri/target/${{ matrix.target }}/release/bundle/nsis/*.exe
|
path: src-tauri/target/${{ matrix.target }}/release/bundle/nsis/*.exe
|
||||||
if-no-files-found: error
|
if-no-files-found: error
|
||||||
|
|
||||||
|
- name: Upload Artifacts (Linux)
|
||||||
|
if: matrix.os == 'linux-latest' && github.event.inputs[matrix.input] == 'true'
|
||||||
|
uses: actions/upload-artifact@v4
|
||||||
|
with:
|
||||||
|
name: ${{ matrix.target }}
|
||||||
|
path: src-tauri/target/${{ matrix.target }}/release/bundle/deb/*.deb
|
||||||
|
if-no-files-found: error
|
||||||
|
|||||||
Reference in New Issue
Block a user