Skip to content

added fetching url from config on load #101

added fetching url from config on load

added fetching url from config on load #101

Workflow file for this run

name: "build"
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: 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: macos-build-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: windows-build-exe
path: src-tauri/target/release/bundle/nsis/*.exe
- uses: actions/upload-artifact@v3
if: matrix.platform == 'windows-latest'
with:
name: windows-build-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: ubuntu-build-deb
path: src-tauri/target/release/bundle/deb/*.deb
- uses: actions/upload-artifact@v3
if: matrix.platform == 'ubuntu-latest'
with:
name: ubuntu-build-appimage
path: src-tauri/target/release/bundle/appimage/*.AppImage
- uses: actions/upload-artifact@v3
if: matrix.platform == 'ubuntu-latest'
with:
name: ubuntu-build-rpm
path: src-tauri/target/release/bundle/rpm/*.rpm