Testing workflow
All checks were successful
Multi-Platform Release Build / build (false, linux/arm64, native) (push) Successful in 5m43s
Multi-Platform Release Build / build (true, build-essential gcc-x86-64-linux-gnu libc6-dev-amd64-cross pkg-config binutils-x86-64-linux-gnu, map[CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_LINKER:x86_64-linux-gnu-gcc], linux/amd64, x86_64-unknown-linux-gnu) (push) Successful in 8m34s
Multi-Platform Release Build / build (true, gcc-mingw-w64-x86-64 g++-mingw-w64-x86-64 cmake nasm, map[CARGO_TARGET_X86_64_PC_WINDOWS_GNU_LINKER:x86_64-w64-mingw32-gcc CC_x86_64_pc_windows_gnu:x86_64-w64-mingw32-gcc], linux/amd64, x86_64-pc-windows-gnu) (push) Successful in 10m50s
Multi-Platform Release Build / create-release (push) Successful in 40s

This commit is contained in:
Marco De Araujo 2026-01-05 14:15:51 -04:00
parent 89bf217afd
commit 78d0e553af

View file

@ -66,6 +66,10 @@ jobs:
chmod +x "release-artifacts/$OUTPUT_NAME" chmod +x "release-artifacts/$OUTPUT_NAME"
ls -lh "release-artifacts/$OUTPUT_NAME" ls -lh "release-artifacts/$OUTPUT_NAME"
- name: Get Rust version
id: rust-version
run: echo "version=$(rustc --version | cut -d' ' -f2)" >> $GITHUB_OUTPUT
- name: Cross-Build Linux x86_64 Release - name: Cross-Build Linux x86_64 Release
if: matrix.target == 'x86_64-unknown-linux-gnu' if: matrix.target == 'x86_64-unknown-linux-gnu'
uses: docker://rust:slim uses: docker://rust:slim
@ -144,12 +148,14 @@ jobs:
tag: ${{ forgejo.ref_name }} tag: ${{ forgejo.ref_name }}
release-notes: | release-notes: |
## 🚀 Multi-Platform Release ## 🚀 Multi-Platform Release
Compiled on runner **${{ env.RUNNER_ARCH }}** Compiled on Forgejo Runner **${{ runner.arch }}**
### 📦 Available Binaries ### 📦 Available Binaries
This release includes binaries for the following platforms: This release includes binaries for the following platforms:
- **Linux x86_64** (Intel/AMD 64-bit) - **Linux x86_64** (Intel/AMD 64-bit)
- **Linux ARM64** (aarch64) - Raspberry Pi 4, ARM servers - **Linux ARM64** (aarch64) - Raspberry Pi 4, ARM servers
- **Windows x86_64** (64-bit) - **Windows x86_64** (64-bit)
### 🚀 How to use ### 🚀 How to use
#### Linux/ARM: #### Linux/ARM:
```bash ```bash
@ -160,17 +166,20 @@ jobs:
# Run # Run
./uptime-kuma-dashboard-* --base-url https://your-kuma --slug your-slug ./uptime-kuma-dashboard-* --base-url https://your-kuma --slug your-slug
``` ```
#### Windows: #### Windows:
```powershell ```powershell
# Download uptime-kuma-dashboard-x86_64-pc-windows-gnu.exe # Download uptime-kuma-dashboard-x86_64-pc-windows-gnu.exe
# Run in PowerShell or CMD # Run in PowerShell or CMD
.\uptime-kuma-dashboard-x86_64-pc-windows-gnu.exe --base-url https://your-kuma --slug your-slug .\uptime-kuma-dashboard-x86_64-pc-windows-gnu.exe --base-url https://your-kuma --slug your-slug
``` ```
### ✅ Verify Checksums ### ✅ Verify Checksums
```bash ```bash
sha256sum -c SHA256SUMS.txt sha256sum -c SHA256SUMS.txt
``` ```
### 🏗️ Build Information ### 🏗️ Build Information
- Runner Architecture: ${{ env.RUNNER_ARCH }} - Rust Version: ${{ steps.rust-version.outputs.version }}
- Rust Version: 1.92.0 - Build Date: $(date +'%Y-%m-%d')
- Build Type: Release (optimized) - Build Type: Release (optimized with LTO)