mirror of
https://github.com/0PandaDEV/Qopy.git
synced 2025-04-21 21:24:05 +02:00
added workflow and package updates
This commit is contained in:
parent
e46319a3a5
commit
5d67412650
3 changed files with 104 additions and 1 deletions
84
.github/workflows/build.yml
vendored
Normal file
84
.github/workflows/build.yml
vendored
Normal file
|
@ -0,0 +1,84 @@
|
|||
name: "Nightly Builds"
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
pull_request:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
publish-tauri:
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
platform: [macos-latest, ubuntu-latest, windows-latest]
|
||||
|
||||
runs-on: ${{ matrix.platform }}
|
||||
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
|
||||
|
||||
- name: Rust cache
|
||||
uses: swatinem/rust-cache@v2
|
||||
with:
|
||||
workspaces: "./src-tauri -> target"
|
||||
|
||||
- name: pnpm cache
|
||||
uses: actions/cache@v3
|
||||
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
|
||||
|
||||
- name: Publish macOS Artifact
|
||||
if: matrix.platform == 'macos-latest'
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: build-macos-dmg
|
||||
path: src-tauri/target/release/bundle/dmg/*.dmg
|
||||
|
||||
- name: Publish Windows Artifact
|
||||
if: matrix.platform == 'windows-latest'
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: build-windows-msi
|
||||
path: src-tauri/target/release/bundle/msi/*.msi
|
||||
|
||||
- name: Publish Ubuntu Artifacts
|
||||
if: matrix.platform == 'ubuntu-latest'
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: build-ubuntu-deb
|
||||
path: src-tauri/target/release/bundle/deb/*.deb
|
||||
- uses: actions/upload-artifact@v3
|
||||
if: matrix.platform == 'ubuntu-latest'
|
||||
with:
|
||||
name: build-ubuntu-appimage
|
||||
path: src-tauri/target/release/bundle/appimage/*.AppImage
|
||||
- uses: actions/upload-artifact@v3
|
||||
if: matrix.platform == 'ubuntu-latest'
|
||||
with:
|
||||
name: build-ubuntu-rpm
|
||||
path: src-tauri/target/release/bundle/rpm/*.rpm
|
Loading…
Add table
Add a link
Reference in a new issue