mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-02-24 11:34:55 +01:00
84 lines
2.2 KiB
YAML
84 lines
2.2 KiB
YAML
name: Generate Artifacts
|
|
on:
|
|
push:
|
|
tags: [ v* ]
|
|
|
|
jobs:
|
|
build-artifacts:
|
|
runs-on: ${{ matrix.platform }}
|
|
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
platform: [ ubuntu-latest, macos-latest, windows-latest ]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 18
|
|
cache: 'npm'
|
|
|
|
- uses: actions/cache@v2
|
|
with:
|
|
path: |
|
|
~/.cargo/registry
|
|
~/.cargo/git
|
|
~/.cargo/bin
|
|
target
|
|
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
|
|
|
|
- name: Install stable
|
|
uses: actions-rs/toolchain@v1
|
|
with:
|
|
toolchain: stable
|
|
|
|
- name: Install webkit2gtk (ubuntu only)
|
|
if: matrix.platform == 'ubuntu-latest'
|
|
run: |
|
|
sudo apt-get update
|
|
sudo apt-get install -y webkit2gtk-4.0
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
cargo install rsw wasm-pack
|
|
npm ci
|
|
|
|
- name: Run tests
|
|
run: npm test
|
|
|
|
- name: Build artifacts
|
|
working-directory: ./src-tauri
|
|
run: npm run tauri-build
|
|
env:
|
|
TAURI_PRIVATE_KEY: ${{ secrets.TAURI_PRIVATE_KEY }}
|
|
TAURI_KEY_PASSWORD: ${{ secrets.TAURI_KEY_PASSWORD }}
|
|
|
|
- name: Upload Ubuntu Artifacts
|
|
uses: actions/upload-artifact@v2
|
|
if: matrix.platform == 'ubuntu-latest'
|
|
with:
|
|
name: linux-updater-artifacts
|
|
path: |
|
|
./src-tauri/target/release/bundle/appimage/*.AppImage.*
|
|
|
|
- name: Upload Windows Artifacts
|
|
uses: actions/upload-artifact@v2
|
|
if: matrix.platform == 'windows-latest'
|
|
with:
|
|
name: windows-updater-artifacts
|
|
path: |
|
|
./src-tauri/target/release/bundle/msi/*
|
|
|
|
- name: Upload MacOS Artifacts
|
|
uses: actions/upload-artifact@v2
|
|
if: matrix.platform == 'macos-latest'
|
|
with:
|
|
name: macos-updater-artifacts
|
|
path: |
|
|
./src-tauri/target/release/bundle/macos/*.app
|
|
./src-tauri/target/release/bundle/macos/*.app.tar.gz
|
|
./src-tauri/target/release/bundle/macos/*.sig
|
|
./src-tauri/target/release/bundle/dmg/*.dmg
|