mirror of
https://github.com/zhom/donutbrowser.git
synced 2026-04-23 20:36:09 +02:00
93 lines
2.7 KiB
YAML
93 lines
2.7 KiB
YAML
name: Rolling Release
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
env:
|
|
TAURI_SIGNING_PRIVATE_KEY: ${{ secrets.TAURI_SIGNING_PRIVATE_KEY }}
|
|
TAURI_SIGNING_PRIVATE_KEY_PASSWORD: ${{ secrets.TAURI_SIGNING_PRIVATE_KEY_PASSWORD }}
|
|
|
|
jobs:
|
|
rolling-release:
|
|
permissions:
|
|
contents: write
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
include:
|
|
- platform: "macos-latest"
|
|
args: "--target aarch64-apple-darwin"
|
|
arch: "aarch64"
|
|
target: "aarch64-apple-darwin"
|
|
pkg_target: "latest-macos-arm64"
|
|
nodecar_script: "build:aarch64"
|
|
- platform: "macos-latest"
|
|
args: "--target x86_64-apple-darwin"
|
|
arch: "x86_64"
|
|
target: "x86_64-apple-darwin"
|
|
pkg_target: "latest-macos-x64"
|
|
nodecar_script: "build:x86_64"
|
|
|
|
runs-on: ${{ matrix.platform }}
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Setup Node.js
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version-file: .node-version
|
|
|
|
- name: Setup pnpm
|
|
uses: pnpm/action-setup@v4
|
|
|
|
- name: Setup Rust
|
|
uses: dtolnay/rust-toolchain@stable
|
|
with:
|
|
targets: ${{ matrix.target }}
|
|
|
|
- name: Rust cache
|
|
uses: swatinem/rust-cache@v2
|
|
with:
|
|
workdir: ./src-tauri
|
|
|
|
- name: Install frontend dependencies
|
|
run: pnpm install --frozen-lockfile
|
|
|
|
- name: Install nodecar dependencies
|
|
working-directory: ./nodecar
|
|
run: |
|
|
pnpm install --ignore-workspace --frozen-lockfile
|
|
|
|
- name: Build nodecar sidecar
|
|
shell: bash
|
|
working-directory: ./nodecar
|
|
run: |
|
|
pnpm run ${{ matrix.nodecar_script }}
|
|
|
|
- name: Copy nodecar binary to Tauri binaries
|
|
shell: bash
|
|
run: |
|
|
mkdir -p src-tauri/binaries
|
|
cp nodecar/dist/nodecar src-tauri/binaries/nodecar-${{ matrix.target }}
|
|
|
|
- name: Build frontend
|
|
run: pnpm build
|
|
|
|
- name: Get commit hash
|
|
id: commit
|
|
run: echo "hash=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
|
|
|
|
- name: Build Tauri app
|
|
uses: tauri-apps/tauri-action@v0
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
with:
|
|
tagName: "alpha-${{ steps.commit.outputs.hash }}"
|
|
releaseName: "Donut Browser Alpha (Build ${{ steps.commit.outputs.hash }})"
|
|
releaseBody: "⚠️ **Alpha Release** - This is an automatically generated pre-release build from the latest main branch. Use with caution.\n\nCommit: ${{ github.sha }}\nBuild: ${{ steps.commit.outputs.hash }}"
|
|
releaseDraft: false
|
|
prerelease: true
|
|
args: ${{ matrix.args }}
|