Portal v0.4.0 #60
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
name: "publish-tauri-arm" | |
# From https://v2.tauri.app/distribute/pipelines/github/#arm-runner-compilation | |
on: | |
release: | |
types: | |
- published | |
jobs: | |
publish-tauri-arm: | |
runs-on: ubuntu-22.04 | |
permissions: | |
contents: write | |
strategy: | |
matrix: | |
arch: [aarch64] | |
include: | |
- arch: aarch64 | |
cpu: cortex-a72 | |
base_image: https://dietpi.com/downloads/images/DietPi_RPi-ARMv8-Bookworm.img.xz | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Cache rust build artifacts | |
uses: Swatinem/rust-cache@v2 | |
with: | |
workspaces: src-tauri | |
cache-on-failure: true | |
- name: Build app | |
uses: pguyot/arm-runner-action@v2.6.5 | |
with: | |
base_image: ${{ matrix.base_image }} | |
cpu: ${{ matrix.cpu }} | |
bind_mount_repository: true | |
image_additional_mb: 10240 | |
optimize_image: no | |
#exit_on_fail: no | |
commands: | | |
# Prevent Rust from complaining about $HOME not matching eid home | |
export HOME=/root | |
# Workaround to CI worker being stuck on Updating crates.io index | |
export CARGO_REGISTRIES_CRATES_IO_PROTOCOL=sparse | |
# Install setup prerequisites | |
apt-get update -y --allow-releaseinfo-change | |
apt-get autoremove -y | |
apt-get install -y --no-install-recommends --no-install-suggests curl libwebkit2gtk-4.1-dev build-essential libssl-dev libgtk-3-dev libayatana-appindicator3-dev librsvg2-dev patchelf libfuse2 file | |
curl https://sh.rustup.rs -sSf | sh -s -- -y | |
. "$HOME/.cargo/env" | |
curl -fsSL https://deb.nodesource.com/setup_lts.x | bash | |
apt-get install -y nodejs | |
# Install frontend dependencies | |
npm install | |
# Build the application | |
npm run tauri build -- --verbose | |
- name: Upload deb bundle | |
uses: xresloader/upload-to-github-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
file: "${{ github.workspace }}/src-tauri/target/release/bundle/deb/Portal_*.deb" | |
release_id: ${{ github.event.release.id }} | |
- name: Upload rpm bundle | |
uses: xresloader/upload-to-github-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
file: "${{ github.workspace }}/src-tauri/target/release/bundle/rpm/Portal-*.rpm" | |
release_id: ${{ github.event.release.id }} |