Merge pull request #31 from vleerapp/dependabot/cargo/src-tauri/opens… #155
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Nightly Builds" | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
test-tauri: | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- platform: "macos-latest" | |
args: "--target aarch64-apple-darwin" | |
- platform: "macos-latest" | |
args: "--target x86_64-apple-darwin" | |
- platform: "ubuntu-latest" | |
args: "" | |
- platform: "windows-latest" | |
args: "" | |
runs-on: ${{ matrix.platform }} | |
env: | |
TAURI_SIGNING_PRIVATE_KEY: ${{ secrets.TAURI_SIGNING_PRIVATE_KEY }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: install Rust stable | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
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: pnpm cache | |
uses: actions/cache@v4 | |
with: | |
path: ~/.pnpm-store | |
key: ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }} | |
restore-keys: | | |
${{ runner.os }}-pnpm- | |
- name: install dependencies (ubuntu only) | |
if: matrix.platform == 'ubuntu-latest' | |
run: | | |
sudo apt update | |
sudo apt install libwebkit2gtk-4.1-dev build-essential curl wget file libssl-dev libayatana-appindicator3-dev librsvg2-dev libasound2-dev | |
echo "PKG_CONFIG_PATH=/usr/lib/x86_64-linux-gnu/pkgconfig" >> $GITHUB_ENV | |
- name: install frontend dependencies | |
run: npm install -g pnpm && pnpm install | |
- uses: tauri-apps/tauri-action@v0 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
args: ${{ matrix.args }} | |
- name: Publish macOS Artifact | |
if: matrix.platform == 'macos-latest' | |
uses: actions/upload-artifact@v4 | |
with: | |
name: build-macos-dmg-${{ matrix.args == '--target aarch64-apple-darwin' && 'arm64' || 'x86_64' }} | |
path: src-tauri/target/${{ matrix.args == '--target aarch64-apple-darwin' && 'aarch64-apple-darwin' || 'x86_64-apple-darwin' }}/release/bundle/dmg/*.dmg | |
- name: Publish macOS Updater Files | |
if: matrix.platform == 'macos-latest' | |
uses: actions/upload-artifact@v4 | |
with: | |
name: updater-files-macos-${{ matrix.args == '--target aarch64-apple-darwin' && 'arm64' || 'x86_64' }} | |
path: | | |
src-tauri/target/${{ matrix.args == '--target aarch64-apple-darwin' && 'aarch64-apple-darwin' || 'x86_64-apple-darwin' }}/release/bundle/macos/*.app.tar.gz | |
src-tauri/target/${{ matrix.args == '--target aarch64-apple-darwin' && 'aarch64-apple-darwin' || 'x86_64-apple-darwin' }}/release/bundle/macos/*.app.tar.gz.sig | |
- name: Publish Windows Artifact | |
if: matrix.platform == 'windows-latest' | |
uses: actions/upload-artifact@v4 | |
with: | |
name: build-windows-msi | |
path: src-tauri/target/release/bundle/msi/*.msi | |
- name: Publish Windows Updater Files | |
if: matrix.platform == 'windows-latest' | |
uses: actions/upload-artifact@v4 | |
with: | |
name: updater-files-windows | |
path: | | |
src-tauri/target/release/bundle/msi/*.msi | |
src-tauri/target/release/bundle/msi/*.msi.sig | |
- name: Publish Ubuntu Artifacts | |
if: matrix.platform == 'ubuntu-latest' | |
uses: actions/upload-artifact@v4 | |
with: | |
name: build-ubuntu-deb | |
path: src-tauri/target/release/bundle/deb/*.deb | |
- uses: actions/upload-artifact@v4 | |
if: matrix.platform == 'ubuntu-latest' | |
with: | |
name: build-ubuntu-appimage | |
path: src-tauri/target/release/bundle/appimage/*.AppImage | |
- uses: actions/upload-artifact@v4 | |
if: matrix.platform == 'ubuntu-latest' | |
with: | |
name: build-ubuntu-rpm | |
path: src-tauri/target/release/bundle/rpm/*.rpm | |
- name: Publish Ubuntu Updater Files | |
if: matrix.platform == 'ubuntu-latest' | |
uses: actions/upload-artifact@v4 | |
with: | |
name: updater-files-ubuntu | |
path: | | |
src-tauri/target/release/bundle/appimage/*.AppImage | |
src-tauri/target/release/bundle/appimage/*.AppImage.sig |