v0.4.4 #32
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: Raspberry Pi package | |
on: | |
release: | |
types: [published] | |
jobs: | |
build: | |
permissions: write-all | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: pguyot/[email protected] | |
with: | |
base_image: dietpi:rpi_armv8_bullseye | |
cpu: cortex-a53 | |
bind_mount_repository: true | |
image_additional_mb: 10240 | |
optimize_image: false | |
commands: | | |
# Rust complains (rightly) that $HOME doesn't match 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 upgrade -y | |
apt-get install curl gcc-aarch64-linux-gnu gcc-multilib -y | |
curl https://sh.rustup.rs -sSf | sh -s -- -y --profile minimal | |
. "$HOME/.cargo/env" | |
# Build the TUI application | |
cargo build --release --bin hd-tui | |
# Install build tools and tauri-cli requirements | |
apt-get install -y libwebkit2gtk-4.0-dev build-essential wget libssl-dev libgtk-3-dev libayatana-appindicator3-dev librsvg2-dev | |
# Install wasm32 target and tauri-cli | |
rustup target add wasm32-unknown-unknown | |
cargo install tauri-cli trunk | |
# Build the application | |
cargo tauri build --config '{"package": {"version": "${{ github.event.release.tag_name }}"}}' | |
- name: Upload Release Asset | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | |
gh release upload ${{ github.event.release.tag_name }} ${{ github.workspace }}/target/release/hd-tui | |
gh release upload ${{ github.event.release.tag_name }} ${{ github.workspace }}/target/release/bundle/deb/home-display*.deb |