mirror of
https://github.com/zhom/donutbrowser.git
synced 2026-04-23 04:16:29 +02:00
bcbb2c1d42
Bumps the github-actions group with 2 updates in the / directory: [swatinem/rust-cache](https://github.com/swatinem/rust-cache) and [tauri-apps/tauri-action](https://github.com/tauri-apps/tauri-action). Updates `swatinem/rust-cache` from 2.7.8 to 2.8.0 - [Release notes](https://github.com/swatinem/rust-cache/releases) - [Changelog](https://github.com/Swatinem/rust-cache/blob/master/CHANGELOG.md) - [Commits](https://github.com/swatinem/rust-cache/compare/9d47c6ad4b02e050fd481d890b2ea34778fd09d6...98c8021b550208e191a6a3145459bfc9fb29c4c0) Updates `tauri-apps/tauri-action` from 0.5.20 to 0.5.21 - [Release notes](https://github.com/tauri-apps/tauri-action/releases) - [Changelog](https://github.com/tauri-apps/tauri-action/blob/dev/CHANGELOG.md) - [Commits](https://github.com/tauri-apps/tauri-action/compare/42e9df6c59070d114bf90dcd3943a1b8f138b113...8c94c894075e92c8a2b668b2d35c57e1e38cfdfb) --- updated-dependencies: - dependency-name: swatinem/rust-cache dependency-version: 2.8.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: tauri-apps/tauri-action dependency-version: 0.5.21 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
181 lines
5.6 KiB
YAML
181 lines
5.6 KiB
YAML
name: Release
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- "v*"
|
|
|
|
env:
|
|
TAURI_SIGNING_PRIVATE_KEY: ${{ secrets.TAURI_SIGNING_PRIVATE_KEY }}
|
|
TAURI_SIGNING_PRIVATE_KEY_PASSWORD: ${{ secrets.TAURI_SIGNING_PRIVATE_KEY_PASSWORD }}
|
|
STABLE_RELEASE: "true"
|
|
|
|
jobs:
|
|
security-scan:
|
|
name: Security Vulnerability Scan
|
|
uses: "google/osv-scanner-action/.github/workflows/osv-scanner-reusable.yml@40a8940a65eab1544a6af759e43d936201a131a2" # v2.0.3
|
|
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
|
|
|
|
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"
|
|
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"
|
|
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"
|
|
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"
|
|
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"
|
|
# 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"
|
|
# 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@11bd71901bbe5b1630ceea73d27597364c9af683 #v4.2.2
|
|
|
|
- name: Setup Node.js
|
|
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 #v4.4.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@b3b07ba8b418998c39fb20f53e8b695cdcc8de1b #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 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: Build Tauri app
|
|
uses: tauri-apps/tauri-action@8c94c894075e92c8a2b668b2d35c57e1e38cfdfb #v0.5.21
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
GITHUB_REF_NAME: ${{ github.ref_name }}
|
|
with:
|
|
tagName: ${{ github.ref_name }}
|
|
releaseName: "Donut Browser ${{ github.ref_name }}"
|
|
releaseBody: "See the assets to download this version and install."
|
|
releaseDraft: false
|
|
prerelease: false
|
|
args: ${{ matrix.args }}
|
|
|
|
- name: Commit CHANGELOG.md
|
|
uses: stefanzweifel/git-auto-commit-action@778341af668090896ca464160c2def5d1d1a3eb0 #v6.0.1
|
|
with:
|
|
branch: main
|
|
commit_message: "docs: update CHANGELOG.md for ${{ github.ref_name }} [skip ci]"
|
|
file_pattern: CHANGELOG.md
|