File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change 12
12
13
13
14
14
with :
15
- base_image : https:// dietpi.com/downloads/images/DietPi_RPi-ARMv8-Bullseye.img.xz
15
+ base_image : dietpi:rpi_armv8_bullseye
16
16
cpu : cortex-a53
17
17
bind_mount_repository : true
18
- image_additional_mb : 4096
19
18
optimize_image : false
20
19
commands : |
21
20
# Rust complains (rightly) that $HOME doesn't match eid home
@@ -25,11 +24,12 @@ jobs:
25
24
# Install setup prerequisites
26
25
apt-get update -y --allow-releaseinfo-change
27
26
apt-get upgrade -y
28
- apt-get autoremove -y
29
27
apt-get install curl
30
28
curl https://sh.rustup.rs -sSf | sh -s -- -y
31
29
. "$HOME/.cargo/env"
32
30
curl -fsSL https://deb.nodesource.com/setup_lts.x | sudo -E bash
31
+ # Build the TUI application
32
+ cargo build --release --bin hd-tui
33
33
# Install build tools and tauri-cli requirements
34
34
apt-get install -y libwebkit2gtk-4.0-dev build-essential wget libssl-dev libgtk-3-dev libayatana-appindicator3-dev librsvg2-dev
35
35
# Install wasm32 target and tauri-cli
42
42
env :
43
43
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
44
44
run :
45
- gh release upload ${{ github.event.release.tag_name }} ${{ github.workspace }}/target/release/bundle/deb/home-display*.deb
45
+ gh release upload ${{ github.event.release.tag_name }} ${{ github.workspace }}/target/release/hd-tui
46
+ gh release upload ${{ github.event.release.tag_name }} ${{ github.workspace }}/target/release/bundle/deb/home-display*.deb
You can’t perform that action at this time.
0 commit comments