idk what is going on
release / build (push) Failing after 3m12s

This commit is contained in:
lda
2025-08-25 03:57:04 +07:00 Unverified
parent 0c10cc734a
commit a5935bb1a9
15 changed files with 548 additions and 1 deletions
+70
View File
@@ -0,0 +1,70 @@
name: release
run-name: Release ${{ github.ref_name }}
on:
push:
tags:
- "v*"
workflow_dispatch:
jobs:
build:
runs-on: [self-hosted, windows]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Ensure toolchain and install cross
shell: pwsh
run: |
rustc -V
cargo -V
cargo install cross --git https://github.com/cross-rs/cross
- name: Cache cargo
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Build (armv7-musl)
shell: pwsh
run: |
./scripts/cross_build.ps1 -Release -Targets armv7-unknown-linux-musleabihf
- name: Package rootfs tarball
shell: pwsh
run: |
./scripts/package_rootfs.ps1 -Version "${{ github.ref_name }}" -Target armv7-unknown-linux-musleabihf
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: wakey-rootfs
path: dist/wakey-rootfs-*armv7-unknown-linux-musleabihf.tgz
- name: Publish Release to Gitea (API)
if: startsWith(github.ref, 'refs/tags/')
shell: pwsh
env:
GITEA_TOKEN: ${{ secrets.GITEA_TOKEN }}
run: |
if (-not $env:GITEA_TOKEN) { throw "Missing secrets.GITEA_TOKEN" }
$repoParts = $env:GITHUB_REPOSITORY -split '/'
$owner = $repoParts[0]
$name = $repoParts[1]
$api = $env:GITHUB_API_URL
$tag = $env:GITHUB_REF_NAME
$asset = Get-ChildItem dist\wakey-rootfs-*armv7-unknown-linux-musleabihf.tgz | Select-Object -First 1
if (-not $asset) { throw "No rootfs artifact found in dist" }
$headers = @{ Authorization = "token $env:GITEA_TOKEN" }
$body = @{ tag_name=$tag; name=$tag; draft=$false; prerelease=$false } | ConvertTo-Json
$release = Invoke-RestMethod -Headers $headers -Uri "$api/repos/$owner/$name/releases" -Method Post -Body $body -ContentType 'application/json'
$rid = $release.id
if (-not $rid) { throw "Failed to create release: $($release | ConvertTo-Json -Depth 5)" }
$uploadUri = "$api/repos/$owner/$name/releases/$rid/assets?name=$($asset.Name)"
Invoke-WebRequest -Headers $headers -Uri $uploadUri -Method Post -InFile $asset.FullName -ContentType 'application/gzip' | Out-Null
Write-Host "Release published: tag $tag with asset $($asset.Name)"