mirror of
https://github.com/zhom/donutbrowser.git
synced 2026-04-22 20:06:18 +02:00
155 lines
4.9 KiB
YAML
155 lines
4.9 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:
|
|
security-scan:
|
|
name: Security Vulnerability Scan
|
|
uses: "google/osv-scanner-action/.github/workflows/osv-scanner-reusable.yml@e69cc6c86b31f1e7e23935bbe7031b50e51082de" # v2.0.2
|
|
with:
|
|
scan-args: |-
|
|
-r
|
|
--skip-git
|
|
--lockfile=pnpm-lock.yaml
|
|
--lockfile=src-tauri/Cargo.lock
|
|
--lockfile=nodecar/pnpm-lock.yaml
|
|
./
|
|
permissions:
|
|
security-events: write
|
|
contents: read
|
|
actions: read
|
|
|
|
lint-js:
|
|
name: Lint JavaScript/TypeScript
|
|
uses: ./.github/workflows/lint-js.yml
|
|
secrets: inherit
|
|
|
|
lint-rust:
|
|
name: Lint Rust
|
|
uses: ./.github/workflows/lint-rs.yml
|
|
secrets: inherit
|
|
|
|
rolling-release:
|
|
needs: [security-scan, lint-js, lint-rust]
|
|
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"
|
|
- platform: "macos-latest"
|
|
args: "--target universal-apple-darwin"
|
|
arch: "aarch64"
|
|
target: "aarch64-apple-darwin,x86_64-apple-darwin"
|
|
pkg_target: "universal"
|
|
nodecar_script: "build:universal"
|
|
- platform: "ubuntu-20.04"
|
|
args: "--target x86_64-unknown-linux-gnu"
|
|
arch: "x86_64"
|
|
target: "x86_64-unknown-linux-gnu"
|
|
pkg_target: "latest-linux-x64"
|
|
nodecar_script: "build:linux-x64"
|
|
- platform: "ubuntu-20.04"
|
|
args: "--target aarch64-unknown-linux-gnu"
|
|
arch: "aarch64"
|
|
target: "aarch64-unknown-linux-gnu"
|
|
pkg_target: "latest-linux-arm64"
|
|
nodecar_script: "build:linux-arm64"
|
|
|
|
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: Install dependencies (Ubuntu only)
|
|
if: matrix.platform == 'ubuntu-20.04'
|
|
run: |
|
|
sudo apt-get update
|
|
sudo apt-get install -y libwebkit2gtk-4.1-dev libgtk-3-dev libayatana-appindicator3-dev librsvg2-dev
|
|
# Install cross-compilation tools for ARM64
|
|
if [[ "${{ matrix.arch }}" == "aarch64" ]]; then
|
|
sudo apt-get install -y gcc-aarch64-linux-gnu
|
|
fi
|
|
|
|
- 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 --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
|
|
if [[ "${{ matrix.platform }}" == "windows-latest" ]]; then
|
|
cp nodecar/dist/nodecar.exe src-tauri/binaries/nodecar-${{ matrix.target }}.exe
|
|
else
|
|
cp nodecar/dist/nodecar src-tauri/binaries/nodecar-${{ matrix.target }}
|
|
fi
|
|
|
|
- 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 }}
|
|
BUILD_TAG: "nightly-${{ steps.commit.outputs.hash }}"
|
|
GITHUB_REF_NAME: "nightly-${{ steps.commit.outputs.hash }}"
|
|
GITHUB_SHA: ${{ github.sha }}
|
|
with:
|
|
tagName: "nightly-${{ steps.commit.outputs.hash }}"
|
|
releaseName: "Donut Browser Nightly (Build ${{ steps.commit.outputs.hash }})"
|
|
releaseBody: "⚠️ **Nightly 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 }}
|