From 20ff442dac9600b7ba14c9037f8c046bdacb475a Mon Sep 17 00:00:00 2001 From: 0auBSQ <58159635+0auBSQ@users.noreply.github.com> Date: Sat, 26 Oct 2024 04:37:14 +0900 Subject: [PATCH] autobuild --- .github/workflows/autobuild.yaml | 63 ++++++++++++++++++++++++++++++++ src-tauri/tauri.conf.json | 2 +- 2 files changed, 64 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/autobuild.yaml diff --git a/.github/workflows/autobuild.yaml b/.github/workflows/autobuild.yaml new file mode 100644 index 0000000..6861203 --- /dev/null +++ b/.github/workflows/autobuild.yaml @@ -0,0 +1,63 @@ +name: Build OpenTaiko Hub + +on: + push: + branches: + - main + +jobs: + publish: + permissions: + contents: write + strategy: + fail-fast: false + matrix: + include: + - platform: 'ubuntu-22.04' + args: '' + - platform: 'windows-latest' + args: '' + + runs-on: ${{ matrix.platform }} + steps: + - uses: actions/checkout@v4 + + - 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.1-dev libappindicator3-dev librsvg2-dev patchelf + + - name: setup node + uses: actions/setup-node@v4 + with: + node-version: lts/* + cache: 'npm' # Set this to npm, yarn or pnpm. + + - name: install Rust stable + uses: dtolnay/rust-toolchain@stable # Set this to dtolnay/rust-toolchain@nightly + 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: Rust cache + uses: swatinem/rust-cache@v2 + with: + workspaces: './src-tauri -> target' + + - name: install frontend dependencies + # If you don't have `beforeBuildCommand` configured you may want to build your frontend here too. + run: npm install # change this to npm or pnpm depending on which one you use. + + - uses: tauri-apps/tauri-action@v0 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + tagName: v__VERSION__ # the action automatically replaces \_\_VERSION\_\_ with the app version. + releaseName: 'OpenTaiko Hub v__VERSION__' + releaseBody: | + Note: The Linux builds are experimental, tested only on Ubuntu 22.04 for now. + This is a before-0.6.0 build, not for operational use yet. + releaseDraft: false + prerelease: false + args: ${{ matrix.args }} \ No newline at end of file diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index cef047a..aec623f 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -37,7 +37,7 @@ }, "resources": [], "shortDescription": "", - "targets": "all", + "targets": ["nsis","deb","appimage"], "windows": { "certificateThumbprint": null, "digestAlgorithm": "sha256",