mirror of
https://github.com/zhom/donutbrowser.git
synced 2026-04-23 04:16:29 +02:00
2bd01376db
Bumps the github-actions group with 4 updates: [actions/setup-node](https://github.com/actions/setup-node), [ridedott/merge-me-action](https://github.com/ridedott/merge-me-action), [crate-ci/typos](https://github.com/crate-ci/typos) and [actions/stale](https://github.com/actions/stale). Updates `actions/setup-node` from 4.4.0 to 5.0.0 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/49933ea5288caeca8642d1e84afbd3f7d6820020...a0853c24544627f65ddf259abe73b1d18a591444) Updates `ridedott/merge-me-action` from 2.10.126 to 2.10.128 - [Release notes](https://github.com/ridedott/merge-me-action/releases) - [Changelog](https://github.com/ridedott/merge-me-action/blob/master/CHANGELOG.md) - [Commits](https://github.com/ridedott/merge-me-action/compare/ad649157c69da4d34e601ee360de7a74ce4e2090...60142b76c22362f5845c877672fd2822b4d07c13) Updates `crate-ci/typos` from 1.35.7 to 1.36.2 - [Release notes](https://github.com/crate-ci/typos/releases) - [Changelog](https://github.com/crate-ci/typos/blob/master/CHANGELOG.md) - [Commits](https://github.com/crate-ci/typos/compare/65f69f021b736bdbe548ce72200500752d42b40e...85f62a8a84f939ae994ab3763f01a0296d61a7ee) Updates `actions/stale` from 9.1.0 to 10.0.0 - [Release notes](https://github.com/actions/stale/releases) - [Changelog](https://github.com/actions/stale/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/stale/compare/5bef64f19d7facfb25b37b414482c7164d639639...3a9db7e6a41a89f618792c92c0e97cc736e1b13f) --- updated-dependencies: - dependency-name: actions/setup-node dependency-version: 5.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: ridedott/merge-me-action dependency-version: 2.10.128 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: crate-ci/typos dependency-version: 1.36.2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: actions/stale dependency-version: 10.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
186 lines
6.1 KiB
YAML
186 lines
6.1 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@90b209d0ea55cea1da9fc0c4e65782cc6acb6e2e" # v2.2.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
|
|
permissions:
|
|
contents: read
|
|
|
|
lint-rust:
|
|
name: Lint Rust
|
|
uses: ./.github/workflows/lint-rs.yml
|
|
secrets: inherit
|
|
permissions:
|
|
contents: read
|
|
|
|
codeql:
|
|
name: CodeQL
|
|
uses: ./.github/workflows/codeql.yml
|
|
secrets: inherit
|
|
permissions:
|
|
security-events: write
|
|
contents: read
|
|
packages: read
|
|
actions: read
|
|
|
|
spellcheck:
|
|
name: Spell Check
|
|
uses: ./.github/workflows/spellcheck.yml
|
|
secrets: inherit
|
|
permissions:
|
|
contents: read
|
|
|
|
rolling-release:
|
|
needs: [security-scan, lint-js, lint-rust, codeql, spellcheck]
|
|
permissions:
|
|
contents: write
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
include:
|
|
- platform: "macos-latest"
|
|
args: "--target aarch64-apple-darwin --verbose"
|
|
arch: "aarch64"
|
|
target: "aarch64-apple-darwin"
|
|
pkg_target: "latest-macos-arm64"
|
|
nodecar_script: "build:mac-aarch64"
|
|
- platform: "macos-latest"
|
|
args: "--target x86_64-apple-darwin --verbose"
|
|
arch: "x86_64"
|
|
target: "x86_64-apple-darwin"
|
|
pkg_target: "latest-macos-x64"
|
|
nodecar_script: "build:mac-x86_64"
|
|
- platform: "ubuntu-22.04"
|
|
args: "--target x86_64-unknown-linux-gnu --verbose"
|
|
arch: "x86_64"
|
|
target: "x86_64-unknown-linux-gnu"
|
|
pkg_target: "latest-linux-x64"
|
|
nodecar_script: "build:linux-x64"
|
|
- platform: "ubuntu-22.04-arm"
|
|
args: "--target aarch64-unknown-linux-gnu --verbose"
|
|
arch: "aarch64"
|
|
target: "aarch64-unknown-linux-gnu"
|
|
pkg_target: "latest-linux-arm64"
|
|
nodecar_script: "build:linux-arm64"
|
|
- platform: "windows-latest"
|
|
args: "--target x86_64-pc-windows-msvc --verbose"
|
|
arch: "x86_64"
|
|
target: "x86_64-pc-windows-msvc"
|
|
pkg_target: "latest-win-x64"
|
|
nodecar_script: "build:win-x64"
|
|
# - platform: "windows-11-arm"
|
|
# args: "--target aarch64-pc-windows-msvc --verbose"
|
|
# arch: "aarch64"
|
|
# target: "aarch64-pc-windows-msvc"
|
|
# pkg_target: "latest-win-arm64"
|
|
# nodecar_script: "build:win-arm64"
|
|
|
|
runs-on: ${{ matrix.platform }}
|
|
steps:
|
|
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 #v5.0.0
|
|
|
|
- name: Setup Node.js
|
|
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 #v5.0.0
|
|
with:
|
|
node-version-file: .node-version
|
|
|
|
- name: Setup pnpm
|
|
uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda #v4.1.0
|
|
|
|
- name: Setup Rust
|
|
uses: dtolnay/rust-toolchain@e97e2d8cc328f1b50210efc529dca0028893a2d9 #master
|
|
with:
|
|
toolchain: stable
|
|
targets: ${{ matrix.target }}
|
|
|
|
- name: Install dependencies (Ubuntu only)
|
|
if: matrix.platform == 'ubuntu-22.04' || matrix.platform == 'ubuntu-22.04-arm'
|
|
run: |
|
|
sudo apt-get update
|
|
sudo apt-get install -y libwebkit2gtk-4.1-dev libgtk-3-dev libayatana-appindicator3-dev librsvg2-dev pkg-config xdg-utils
|
|
|
|
- name: Rust cache
|
|
uses: swatinem/rust-cache@98c8021b550208e191a6a3145459bfc9fb29c4c0 #v2.8.0
|
|
with:
|
|
workdir: ./src-tauri
|
|
|
|
- name: Install banderole
|
|
run: cargo install banderole
|
|
|
|
- name: Install frontend dependencies
|
|
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/nodecar-bin src-tauri/binaries/nodecar-${{ matrix.target }}.exe
|
|
else
|
|
cp nodecar/nodecar-bin src-tauri/binaries/nodecar-${{ matrix.target }}
|
|
fi
|
|
|
|
# - name: Download Camoufox for testing
|
|
# run: npx camoufox-js fetch
|
|
# continue-on-error: true
|
|
|
|
- name: Build frontend
|
|
run: pnpm build
|
|
|
|
- name: Generate nightly timestamp
|
|
id: timestamp
|
|
shell: bash
|
|
run: |
|
|
TIMESTAMP=$(date -u +"%Y-%m-%d")
|
|
COMMIT_HASH=$(echo "${GITHUB_SHA}" | cut -c1-7)
|
|
echo "timestamp=${TIMESTAMP}-${COMMIT_HASH}" >> $GITHUB_OUTPUT
|
|
echo "Generated timestamp: ${TIMESTAMP}-${COMMIT_HASH}"
|
|
|
|
- name: Build Tauri app
|
|
uses: tauri-apps/tauri-action@e834788a94591d81e3ae0bd9ec06366f5afb8994 #v0.5.23
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
BUILD_TAG: "nightly-${{ steps.timestamp.outputs.timestamp }}"
|
|
GITHUB_REF_NAME: "nightly-${{ steps.timestamp.outputs.timestamp }}"
|
|
GITHUB_SHA: ${{ github.sha }}
|
|
with:
|
|
tagName: "nightly-${{ steps.timestamp.outputs.timestamp }}"
|
|
releaseName: "Donut Browser Nightly (Build ${{ steps.timestamp.outputs.timestamp }})"
|
|
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.timestamp.outputs.timestamp }}"
|
|
releaseDraft: false
|
|
prerelease: true
|
|
args: ${{ matrix.args }}
|