chore: bump version to 0.1.3 #61
Workflow file for this run
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
on: [push] | |
name: Bridge Controller | |
jobs: | |
build-and-test: | |
name: ${{ matrix.target }} Build and Test | |
strategy: | |
matrix: | |
target: [Windows, Linux] | |
include: | |
- target: Windows | |
os: windows-latest | |
- target: Linux | |
os: ubuntu-latest | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install tauri dependencies | |
if: ${{ matrix.target == 'Linux' }} | |
run: >- | |
sudo apt-get update && | |
sudo apt-get install --assume-yes \ | |
libwebkit2gtk-4.0-dev \ | |
build-essential \ | |
curl \ | |
wget \ | |
file \ | |
libssl-dev \ | |
libgtk-3-dev \ | |
libayatana-appindicator3-dev \ | |
librsvg2-dev | |
- name: Install rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
- name: Install Protoc | |
uses: arduino/setup-protoc@v2 | |
- name: Run clippy | |
if: ${{ matrix.target == 'Linux' }} | |
run: cargo clippy --all-targets --all-features -- -D warnings | |
working-directory: ./src-tauri | |
- name: Run rust tests | |
run: cargo test | |
working-directory: ./src-tauri | |
# TODO: run front-end tests | |
- name: Install node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: latest | |
- name: Install node dependencies | |
run: npm install | |
- name: Build bundles | |
run: npm run tauri build | |
- name: Upload app image | |
if: ${{ matrix.target == 'Linux' }} | |
uses: actions/upload-artifact@v3 | |
with: | |
name: bridge-controller-appimage | |
path: src-tauri/target/release/bundle/appimage/bridge-controller_*_amd64.AppImage | |
if-no-files-found: error | |
- name: Upload Debian package | |
if: ${{ matrix.target == 'Linux' }} | |
uses: actions/upload-artifact@v3 | |
with: | |
name: bridge-controller-deb | |
path: src-tauri/target/release/bundle/deb/bridge-controller_*_amd64.deb | |
if-no-files-found: error | |
- name: Upload Windows msi installer | |
if: ${{ matrix.target == 'Windows' }} | |
uses: actions/upload-artifact@v3 | |
with: | |
name: bridge-controller-msi | |
path: src-tauri\target\release\bundle\msi\bridge-controller_*_x64_en-US.msi | |
if-no-files-found: error | |
- name: Upload Windows exe binary | |
if: ${{ matrix.target == 'Windows' }} | |
uses: actions/upload-artifact@v3 | |
with: | |
name: bridge-controller-exe | |
path: src-tauri\target\release\bundle\nsis\bridge-controller_*_x64-setup.exe | |
if-no-files-found: error | |
release: | |
needs: build-and-test | |
if: startsWith(github.ref, 'refs/tags/v') | |
runs-on: ubuntu-latest | |
steps: | |
- name: Download Debian package | |
uses: actions/download-artifact@v3 | |
with: | |
name: bridge-controller-deb | |
path: . | |
if-no-files-found: error | |
- name: Packagecloud Upload | |
uses: computology/[email protected] | |
with: | |
PACKAGE-NAME: ./bridge-controller*.deb | |
PACKAGECLOUD-USERNAME: kristian_mika | |
PACKAGECLOUD-REPONAME: mpc-bridge/ubuntu/jammy/release | |
PACKAGECLOUD-TOKEN: ${{ secrets.PACKAGECLOUD_TOKEN }} |