open-design/.github/workflows/release-beta.yml
PerishFire a383b4bd3a
Preserve beta e2e spec reports in R2 (#812)
* Upload beta e2e spec reports to R2

* Expose beta report URLs in summary

* Complete Indonesian deploy locale keys
2026-05-07 20:55:03 +08:00

1181 lines
50 KiB
YAML

name: release-beta
on:
workflow_dispatch:
inputs:
signed:
description: "Build signed/notarized mac artifacts. Disable only for explicit unsigned validation releases."
required: true
type: boolean
default: true
enable_mac:
description: "Build and publish mac arm64 beta artifacts."
required: true
type: boolean
default: true
enable_win:
description: "Build and publish Windows x64 beta artifacts."
required: true
type: boolean
default: true
enable_linux:
description: "Build and publish Linux x64 AppImage/checksum to R2 only; no updater feed is published yet."
required: true
type: boolean
default: false
permissions:
contents: read
concurrency:
group: open-design-release-beta
cancel-in-progress: false
jobs:
metadata:
name: Prepare beta metadata
runs-on: ubuntu-latest
env:
OPEN_DESIGN_BETA_METADATA_URL: ${{ vars.CLOUDFLARE_R2_RELEASES_PUBLIC_ORIGIN }}/beta/latest/metadata.json
OPEN_DESIGN_RELEASE_SIGNED: ${{ inputs.signed }}
outputs:
asset_version_suffix: ${{ steps.beta.outputs.asset_version_suffix }}
base_version: ${{ steps.beta.outputs.base_version }}
beta_version: ${{ steps.beta.outputs.beta_version }}
branch: ${{ steps.beta.outputs.branch }}
commit: ${{ steps.beta.outputs.commit }}
release_name: ${{ steps.beta.outputs.release_name }}
signed: ${{ steps.beta.outputs.signed }}
state_source: ${{ steps.beta.outputs.state_source }}
steps:
- name: Checkout
uses: actions/checkout@v6.0.2
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: 24
- name: Validate beta publish inputs
run: |
set -euo pipefail
if [ "${{ inputs.enable_mac }}" != "true" ] && [ "${{ inputs.enable_win }}" != "true" ] && [ "${{ inputs.enable_linux }}" != "true" ]; then
echo "release-beta requires at least one platform to be enabled" >&2
exit 1
fi
- name: Validate R2 release access
env:
AWS_ACCESS_KEY_ID: ${{ secrets.CLOUDFLARE_R2_RELEASES_AK }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.CLOUDFLARE_R2_RELEASES_SK }}
AWS_DEFAULT_REGION: auto
AWS_EC2_METADATA_DISABLED: "true"
CLOUDFLARE_R2_RELEASES_BUCKET: ${{ secrets.CLOUDFLARE_R2_RELEASES_BUCKET }}
CLOUDFLARE_R2_RELEASES_PUBLIC_ORIGIN: ${{ vars.CLOUDFLARE_R2_RELEASES_PUBLIC_ORIGIN }}
CLOUDFLARE_R2_RELEASES_URL: ${{ secrets.CLOUDFLARE_R2_RELEASES_URL }}
run: |
set -euo pipefail
for name in AWS_ACCESS_KEY_ID AWS_SECRET_ACCESS_KEY CLOUDFLARE_R2_RELEASES_BUCKET CLOUDFLARE_R2_RELEASES_PUBLIC_ORIGIN CLOUDFLARE_R2_RELEASES_URL; do
if [ -z "${!name}" ]; then
echo "$name is required" >&2
exit 1
fi
done
probe_file="$RUNNER_TEMP/r2-release-access.txt"
probe_key="beta/.ci-access-check/release-beta.txt"
printf 'run=%s\nsha=%s\n' "$GITHUB_RUN_ID" "$GITHUB_SHA" > "$probe_file"
aws --endpoint-url "${CLOUDFLARE_R2_RELEASES_URL%/}" s3api put-object \
--bucket "$CLOUDFLARE_R2_RELEASES_BUCKET" \
--key "$probe_key" \
--body "$probe_file" \
--content-type "text/plain; charset=utf-8" \
--cache-control "no-store" \
--no-cli-pager >/dev/null
- name: Prepare beta release metadata
id: beta
run: node --experimental-strip-types ./scripts/release-beta.ts
build_mac:
name: Build beta mac arm64
needs: metadata
if: ${{ inputs.enable_mac }}
runs-on: macos-14
steps:
- name: Checkout
uses: actions/checkout@v6.0.2
with:
fetch-depth: 0
- name: Setup pnpm
uses: pnpm/action-setup@v5
with:
version: 10.33.2
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: 24
cache: pnpm
cache-dependency-path: pnpm-lock.yaml
- name: Compute mac tools-pack cache key
id: mac_tools_pack_cache_key
run: |
set -euo pipefail
echo "epoch=$(date -u +%Y-%m)" >> "$GITHUB_OUTPUT"
- name: Restore mac tools-pack cache
id: mac_tools_pack_cache_restore
uses: actions/cache/restore@v5
continue-on-error: true
with:
path: ${{ runner.temp }}/tools-pack-cache
key: tools-pack-mac-v1-${{ runner.os }}-${{ steps.mac_tools_pack_cache_key.outputs.epoch }}-${{ github.sha }}
restore-keys: |
tools-pack-mac-v1-${{ runner.os }}-${{ steps.mac_tools_pack_cache_key.outputs.epoch }}-
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Apply beta package version
run: npm pkg set "version=${{ needs.metadata.outputs.beta_version }}" --prefix apps/packaged
- name: Prepare Apple signing certificate
if: ${{ inputs.signed }}
env:
APPLE_SIGNING_CERTIFICATE_BASE64: ${{ secrets.APPLE_SIGNING_CERTIFICATE_BASE64 }}
APPLE_SIGNING_CERTIFICATE_PASSWORD: ${{ secrets.APPLE_SIGNING_CERTIFICATE_PASSWORD }}
run: |
set -euo pipefail
cert_path="$RUNNER_TEMP/open-design-signing.p12"
if ! printf '%s' "$APPLE_SIGNING_CERTIFICATE_BASE64" | base64 --decode > "$cert_path" 2>/dev/null; then
printf '%s' "$APPLE_SIGNING_CERTIFICATE_BASE64" | base64 -D > "$cert_path"
fi
{
echo "CSC_LINK=$cert_path"
echo "CSC_KEY_PASSWORD=$APPLE_SIGNING_CERTIFICATE_PASSWORD"
} >> "$GITHUB_ENV"
- name: Build beta mac artifacts
env:
APPLE_ID: ${{ secrets.APPLE_ID }}
APPLE_APP_SPECIFIC_PASSWORD: ${{ secrets.APPLE_APP_SPECIFIC_PASSWORD }}
APPLE_TEAM_ID: ${{ secrets.APPLE_TEAM_ID }}
run: |
set -euo pipefail
tools_pack_dir="$RUNNER_TEMP/tools-pack"
cache_dir="$RUNNER_TEMP/tools-pack-cache"
build_json_path="$RUNNER_TEMP/mac-tools-pack-build.json"
build_args=(
exec tools-pack mac build
--dir "$tools_pack_dir"
--cache-dir "$cache_dir"
--namespace release-beta
--portable
--mac-compression maximum
--to all
--json
)
if [ "${{ inputs.signed }}" = "true" ]; then
build_args+=(--signed)
fi
if build_output="$(pnpm "${build_args[@]}")"; then
printf '%s\n' "$build_output" | tee "$build_json_path"
else
cached_status=$?
printf '%s\n' "$build_output"
echo "mac tools-pack cached build failed with exit code $cached_status; removing cache and retrying without cache" >&2
rm -rf "$cache_dir"
fallback_args=(
exec tools-pack mac build
--dir "$tools_pack_dir"
--namespace release-beta
--portable
--mac-compression maximum
--to all
--json
)
if [ "${{ inputs.signed }}" = "true" ]; then
fallback_args+=(--signed)
fi
fallback_output="$(pnpm "${fallback_args[@]}")"
printf '%s\n' "$fallback_output" | tee "$build_json_path"
fi
- name: Smoke beta mac packaged runtime
working-directory: e2e
env:
OD_PACKAGED_E2E_MAC: "1"
OD_PACKAGED_E2E_NAMESPACE: release-beta
OD_PACKAGED_E2E_SCREENSHOT_PATH: ${{ runner.temp }}/release-report/mac/screenshots/open-design-mac-smoke.png
OD_PACKAGED_E2E_TOOLS_PACK_DIR: ${{ runner.temp }}/tools-pack
run: |
set -euo pipefail
report_dir="$RUNNER_TEMP/release-report/mac"
mkdir -p "$report_dir/screenshots"
cat > "$report_dir/manifest.json" <<EOF
{
"platform": "mac",
"spec": "specs/mac.spec.ts",
"namespace": "release-beta",
"screenshot": "screenshots/open-design-mac-smoke.png",
"githubRunId": "$GITHUB_RUN_ID",
"githubRunAttempt": "$GITHUB_RUN_ATTEMPT",
"commit": "$GITHUB_SHA"
}
EOF
pnpm test specs/mac.spec.ts 2>&1 | tee "$report_dir/vitest.log"
- name: Upload mac e2e spec report
if: ${{ always() }}
uses: actions/upload-artifact@v7
with:
name: open-design-beta-mac-e2e-report
path: ${{ runner.temp }}/release-report/mac
if-no-files-found: warn
- name: Prune mac tools-pack cache
continue-on-error: true
run: |
set -euo pipefail
cache_root="$RUNNER_TEMP/tools-pack-cache"
if [ ! -d "$cache_root" ]; then
echo "tools-pack cache root does not exist; nothing to prune"
exit 0
fi
rm -rf "$cache_root/locks"
CACHE_ROOT="$cache_root" node --input-type=module <<'NODE'
import { rmSync, statSync, readdirSync } from "node:fs";
import { join } from "node:path";
const cacheRoot = process.env.CACHE_ROOT;
const entryRoot = join(cacheRoot, "entries");
const maxBytes = 6 * 1024 * 1024 * 1024;
const entries = [];
function directoryBytes(path) {
let total = 0;
for (const entry of readdirSync(path, { withFileTypes: true })) {
const child = join(path, entry.name);
if (entry.isDirectory()) total += directoryBytes(child);
else total += statSync(child).size;
}
return total;
}
try {
for (const node of readdirSync(entryRoot, { withFileTypes: true })) {
if (!node.isDirectory()) continue;
const nodeRoot = join(entryRoot, node.name);
for (const entry of readdirSync(nodeRoot, { withFileTypes: true })) {
if (!entry.isDirectory()) continue;
const path = join(nodeRoot, entry.name);
const size = directoryBytes(path);
entries.push({ node: node.name, path, size, mtimeMs: statSync(path).mtimeMs });
}
}
} catch {
console.log("tools-pack cache entries root does not exist; nothing to prune");
process.exit(0);
}
entries.sort((left, right) => right.mtimeMs - left.mtimeMs);
let keptBytes = 0;
let removedBytes = 0;
let removedCount = 0;
for (const entry of entries) {
if (keptBytes + entry.size <= maxBytes) {
keptBytes += entry.size;
continue;
}
rmSync(entry.path, { force: true, recursive: true });
removedBytes += entry.size;
removedCount += 1;
}
console.log(`keptBytes=${keptBytes} removedBytes=${removedBytes} removedCount=${removedCount} maxBytes=${maxBytes}`);
NODE
- name: Summarize mac tools-pack build
continue-on-error: true
run: |
set -euo pipefail
build_json_path="$RUNNER_TEMP/mac-tools-pack-build.json"
if [ ! -f "$build_json_path" ]; then
{
echo "### mac tools-pack build"
echo
echo "Build JSON was not found at \`$build_json_path\`."
} >> "$GITHUB_STEP_SUMMARY"
exit 0
fi
BUILD_JSON_PATH="$build_json_path" node --input-type=module <<'NODE' >> "$GITHUB_STEP_SUMMARY"
import { readFileSync } from "node:fs";
const build = JSON.parse(readFileSync(process.env.BUILD_JSON_PATH, "utf8"));
console.log("### mac tools-pack build");
console.log("");
console.log("| Phase | Duration |");
console.log("| --- | ---: |");
for (const timing of build.timings ?? []) {
console.log(`| \`${timing.phase}\` | ${(Number(timing.durationMs) / 1000).toFixed(1)}s |`);
}
console.log("");
console.log("| Cache node | Status | Reason | Duration |");
console.log("| --- | --- | --- | ---: |");
for (const entry of build.cacheReport?.entries ?? []) {
console.log(`| \`${entry.nodeId}\` | \`${entry.status}\` | ${entry.reason ?? ""} | ${(Number(entry.durationMs) / 1000).toFixed(1)}s |`);
}
NODE
- name: Save mac tools-pack cache
if: ${{ success() && steps.mac_tools_pack_cache_restore.outputs.cache-hit != 'true' }}
uses: actions/cache/save@v5
continue-on-error: true
with:
path: ${{ runner.temp }}/tools-pack-cache
key: tools-pack-mac-v1-${{ runner.os }}-${{ steps.mac_tools_pack_cache_key.outputs.epoch }}-${{ github.sha }}
- name: Prepare beta assets
id: assets
env:
CLOUDFLARE_R2_RELEASES_PUBLIC_ORIGIN: ${{ vars.CLOUDFLARE_R2_RELEASES_PUBLIC_ORIGIN }}
run: |
set -euo pipefail
if [ -z "$CLOUDFLARE_R2_RELEASES_PUBLIC_ORIGIN" ]; then
echo "CLOUDFLARE_R2_RELEASES_PUBLIC_ORIGIN is required" >&2
exit 1
fi
release_dir="$RUNNER_TEMP/release-assets"
mkdir -p "$release_dir"
source_dmg="$RUNNER_TEMP/tools-pack/out/mac/namespaces/release-beta/dmg/Open Design-release-beta.dmg"
source_zip="$RUNNER_TEMP/tools-pack/out/mac/namespaces/release-beta/zip/Open Design-release-beta.zip"
if [ ! -f "$source_dmg" ]; then
echo "expected dmg not found at $source_dmg" >&2
exit 1
fi
if [ ! -f "$source_zip" ]; then
echo "expected zip not found at $source_zip" >&2
exit 1
fi
asset_suffix="${{ needs.metadata.outputs.asset_version_suffix }}"
versioned_dmg="open-design-${{ needs.metadata.outputs.beta_version }}${asset_suffix}-mac-arm64.dmg"
versioned_zip="open-design-${{ needs.metadata.outputs.beta_version }}${asset_suffix}-mac-arm64.zip"
dmg_checksum_file="$versioned_dmg.sha256"
zip_checksum_file="$versioned_zip.sha256"
cp "$source_dmg" "$release_dir/$versioned_dmg"
cp "$source_zip" "$release_dir/$versioned_zip"
(
cd "$release_dir"
shasum -a 256 "$versioned_dmg" > "$dmg_checksum_file"
shasum -a 256 "$versioned_zip" > "$zip_checksum_file"
)
zip_sha512="$(openssl dgst -sha512 -binary "$release_dir/$versioned_zip" | openssl base64 -A)"
zip_size="$(stat -f%z "$release_dir/$versioned_zip")"
public_origin="${CLOUDFLARE_R2_RELEASES_PUBLIC_ORIGIN%/}"
version_prefix="beta/versions/${{ needs.metadata.outputs.beta_version }}${asset_suffix}"
zip_url="$public_origin/$version_prefix/$versioned_zip"
release_date="$(date -u +%Y-%m-%dT%H:%M:%SZ)"
cat > "$release_dir/latest-mac.yml" <<EOF
version: "${{ needs.metadata.outputs.beta_version }}"
files:
- url: "$zip_url"
sha512: "$zip_sha512"
size: $zip_size
path: "$zip_url"
sha512: "$zip_sha512"
releaseDate: "$release_date"
releaseNotes: "Open Design beta ${{ needs.metadata.outputs.beta_version }}${asset_suffix}"
EOF
- name: Upload mac release bundle
uses: actions/upload-artifact@v7
with:
name: open-design-beta-mac-release-assets
path: ${{ runner.temp }}/release-assets
build_win:
name: Build beta win x64
needs: metadata
if: ${{ inputs.enable_win }}
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v6.0.2
with:
fetch-depth: 0
- name: Setup pnpm
uses: pnpm/action-setup@v5
with:
version: 10.33.2
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: 24
cache: pnpm
cache-dependency-path: pnpm-lock.yaml
- name: Compute Windows tools-pack cache key
id: win_tools_pack_cache_key
shell: pwsh
run: |
$epoch = (Get-Date).ToUniversalTime().ToString("yyyy-MM")
"epoch=$epoch" | Out-File -FilePath $env:GITHUB_OUTPUT -Append
- name: Restore Windows tools-pack cache
id: win_tools_pack_cache_restore
uses: actions/cache/restore@v5
continue-on-error: true
with:
path: ${{ runner.temp }}/tools-pack-cache
key: tools-pack-win-v6-${{ runner.os }}-${{ steps.win_tools_pack_cache_key.outputs.epoch }}-${{ github.sha }}
restore-keys: |
tools-pack-win-v6-${{ runner.os }}-${{ steps.win_tools_pack_cache_key.outputs.epoch }}-
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Setup NSIS
shell: pwsh
run: |
if ((Get-Command makensis.exe -ErrorAction SilentlyContinue) -or (Test-Path "C:\Program Files (x86)\NSIS\makensis.exe")) {
exit 0
}
choco install nsis -y --no-progress
- name: Apply beta package version
run: npm pkg set "version=${{ needs.metadata.outputs.beta_version }}" --prefix apps/packaged
- name: Build beta windows artifacts
shell: pwsh
run: |
$ErrorActionPreference = "Stop"
$toolsPackDir = "${{ runner.temp }}/tools-pack"
$cacheDir = "${{ runner.temp }}/tools-pack-cache"
$buildJsonPath = Join-Path $env:RUNNER_TEMP "windows-tools-pack-build.json"
$buildArgs = @(
"exec", "tools-pack", "win", "build",
"--dir", $toolsPackDir,
"--cache-dir", $cacheDir,
"--namespace", "release-beta-win",
"--portable",
"--to", "nsis",
"--json"
)
try {
$buildOutput = pnpm @buildArgs
if ($LASTEXITCODE -ne 0) {
throw "Windows tools-pack cached build exited with code $LASTEXITCODE"
}
} catch {
Write-Warning "Windows tools-pack cached build failed; removing restored cache and retrying without cache."
Remove-Item -Recurse -Force -ErrorAction SilentlyContinue $cacheDir
$buildOutput = pnpm exec tools-pack win build `
--dir $toolsPackDir `
--namespace release-beta-win `
--portable `
--to nsis `
--json
if ($LASTEXITCODE -ne 0) {
throw "Windows tools-pack uncached fallback build exited with code $LASTEXITCODE"
}
}
$buildOutput | Set-Content -Path $buildJsonPath
$buildOutput
- name: Smoke beta windows packaged runtime
working-directory: e2e
env:
OD_PACKAGED_E2E_WIN: "1"
OD_PACKAGED_E2E_NAMESPACE: release-beta-win
OD_PACKAGED_E2E_TOOLS_PACK_DIR: ${{ runner.temp }}/tools-pack
run: |
$ErrorActionPreference = "Stop"
$reportDir = Join-Path $env:RUNNER_TEMP "release-report/win"
$screenshotDir = Join-Path $reportDir "screenshots"
New-Item -ItemType Directory -Force -Path $screenshotDir | Out-Null
$env:OD_PACKAGED_E2E_SCREENSHOT_PATH = Join-Path $screenshotDir "open-design-win-smoke.png"
@{
platform = "win"
spec = "specs/win.spec.ts"
namespace = "release-beta-win"
screenshot = "screenshots/open-design-win-smoke.png"
githubRunId = $env:GITHUB_RUN_ID
githubRunAttempt = $env:GITHUB_RUN_ATTEMPT
commit = $env:GITHUB_SHA
} | ConvertTo-Json | Set-Content -Path (Join-Path $reportDir "manifest.json")
pnpm test specs/win.spec.ts 2>&1 | Tee-Object -FilePath (Join-Path $reportDir "vitest.log")
$testExitCode = $LASTEXITCODE
if ($testExitCode -ne 0) {
exit $testExitCode
}
- name: Upload windows e2e spec report
if: ${{ always() }}
uses: actions/upload-artifact@v7
with:
name: open-design-beta-win-e2e-report
path: ${{ runner.temp }}/release-report/win
if-no-files-found: warn
- name: Prune Windows tools-pack cache
shell: pwsh
continue-on-error: true
run: |
$cacheRoot = Join-Path $env:RUNNER_TEMP "tools-pack-cache"
if (!(Test-Path $cacheRoot)) {
"tools-pack cache root does not exist; nothing to prune"
exit 0
}
Remove-Item -Recurse -Force -ErrorAction SilentlyContinue (Join-Path $cacheRoot "locks")
$maxBytes = 6GB
$entryRoot = Join-Path $cacheRoot "entries"
if (!(Test-Path $entryRoot)) {
"tools-pack cache entries root does not exist; nothing to prune"
exit 0
}
$discardedBytes = 0L
$discardedCount = 0
$packagedAppRoot = Join-Path $entryRoot "win.packaged-app"
if (Test-Path $packagedAppRoot) {
$packagedAppEntries = Get-ChildItem -Path $packagedAppRoot -Directory -ErrorAction SilentlyContinue |
Where-Object { Test-Path (Join-Path $_.FullName "manifest.json") }
foreach ($entry in $packagedAppEntries) {
$size = (Get-ChildItem -Path $entry.FullName -Recurse -File -Force -ErrorAction SilentlyContinue |
Measure-Object -Property Length -Sum).Sum
Remove-Item -Recurse -Force -LiteralPath $entry.FullName
$discardedBytes += [int64]($size ?? 0)
$discardedCount += 1
}
Remove-Item -Recurse -Force -ErrorAction SilentlyContinue $packagedAppRoot
}
$priorityByNode = @{
"win.electron-builder-dir" = 0
"win.workspace-build" = 1
"win.resource-tree" = 2
"win.workspace-tarballs" = 3
}
$entries = Get-ChildItem -Path $entryRoot -Directory -Recurse |
Where-Object { Test-Path (Join-Path $_.FullName "manifest.json") } |
ForEach-Object {
$size = (Get-ChildItem -Path $_.FullName -Recurse -File -Force -ErrorAction SilentlyContinue |
Measure-Object -Property Length -Sum).Sum
$node = Split-Path (Split-Path $_.FullName -Parent) -Leaf
[pscustomobject]@{
Path = $_.FullName
Node = $node
Priority = [int]($priorityByNode[$node] ?? 100)
Size = [int64]($size ?? 0)
LastWriteTimeUtc = $_.LastWriteTimeUtc
}
} |
Sort-Object Priority, @{ Expression = "LastWriteTimeUtc"; Descending = $true }
$keptBytes = 0L
$removedBytes = 0L
$removedCount = 0
foreach ($entry in $entries) {
if (($keptBytes + $entry.Size) -le $maxBytes) {
$keptBytes += $entry.Size
continue
}
Remove-Item -Recurse -Force -LiteralPath $entry.Path
$removedBytes += $entry.Size
$removedCount += 1
}
"keptBytes=$keptBytes removedBytes=$removedBytes removedCount=$removedCount discardedBytes=$discardedBytes discardedCount=$discardedCount maxBytes=$maxBytes"
- name: Summarize Windows tools-pack build
shell: pwsh
continue-on-error: true
run: |
$summaryPath = $env:GITHUB_STEP_SUMMARY
$buildJsonPath = Join-Path $env:RUNNER_TEMP "windows-tools-pack-build.json"
if (!(Test-Path $buildJsonPath)) {
"### Windows tools-pack build" | Add-Content -Path $summaryPath
"" | Add-Content -Path $summaryPath
"Build JSON was not found at `$buildJsonPath`." | Add-Content -Path $summaryPath
exit 0
}
$build = Get-Content -Raw -Path $buildJsonPath | ConvertFrom-Json
"### Windows tools-pack build" | Add-Content -Path $summaryPath
"" | Add-Content -Path $summaryPath
"| Phase | Duration |" | Add-Content -Path $summaryPath
"| --- | ---: |" | Add-Content -Path $summaryPath
foreach ($timing in $build.timings) {
$seconds = [math]::Round(([double]$timing.durationMs) / 1000, 1)
"| `$($timing.phase)` | ${seconds}s |" | Add-Content -Path $summaryPath
}
"" | Add-Content -Path $summaryPath
"| Cache node | Status | Reason | Duration |" | Add-Content -Path $summaryPath
"| --- | --- | --- | ---: |" | Add-Content -Path $summaryPath
foreach ($entry in $build.cacheReport.entries) {
$seconds = [math]::Round(([double]$entry.durationMs) / 1000, 1)
$reason = if ($null -eq $entry.reason) { "" } else { [string]$entry.reason }
"| `$($entry.nodeId)` | `$($entry.status)` | $reason | ${seconds}s |" | Add-Content -Path $summaryPath
}
$cacheRoot = Join-Path $env:RUNNER_TEMP "tools-pack-cache"
$entryRoot = Join-Path $cacheRoot "entries"
if (Test-Path $entryRoot) {
$entries = Get-ChildItem -Path $entryRoot -Directory -Recurse |
Where-Object { Test-Path (Join-Path $_.FullName "manifest.json") } |
ForEach-Object {
$size = (Get-ChildItem -Path $_.FullName -Recurse -File -Force -ErrorAction SilentlyContinue |
Measure-Object -Property Length -Sum).Sum
[pscustomobject]@{
Node = Split-Path (Split-Path $_.FullName -Parent) -Leaf
Size = [int64]($size ?? 0)
}
} |
Group-Object Node |
ForEach-Object {
[pscustomobject]@{
Node = $_.Name
Count = $_.Count
Size = [int64](($_.Group | Measure-Object -Property Size -Sum).Sum ?? 0)
}
} |
Sort-Object Size -Descending
"" | Add-Content -Path $summaryPath
"| Saved cache node | Entries | Size |" | Add-Content -Path $summaryPath
"| --- | ---: | ---: |" | Add-Content -Path $summaryPath
foreach ($entry in $entries) {
$mb = [math]::Round(([double]$entry.Size) / 1MB, 1)
"| `$($entry.Node)` | $($entry.Count) | ${mb} MB |" | Add-Content -Path $summaryPath
}
}
- name: Save Windows tools-pack cache
if: ${{ success() && steps.win_tools_pack_cache_restore.outputs.cache-hit != 'true' }}
uses: actions/cache/save@v5
continue-on-error: true
with:
path: ${{ runner.temp }}/tools-pack-cache
key: tools-pack-win-v6-${{ runner.os }}-${{ steps.win_tools_pack_cache_key.outputs.epoch }}-${{ github.sha }}
- name: Prepare windows beta assets
shell: pwsh
env:
CLOUDFLARE_R2_RELEASES_PUBLIC_ORIGIN: ${{ vars.CLOUDFLARE_R2_RELEASES_PUBLIC_ORIGIN }}
run: |
if ([string]::IsNullOrWhiteSpace($env:CLOUDFLARE_R2_RELEASES_PUBLIC_ORIGIN)) {
throw "CLOUDFLARE_R2_RELEASES_PUBLIC_ORIGIN is required"
}
$releaseDir = Join-Path $env:RUNNER_TEMP "release-assets"
New-Item -ItemType Directory -Force -Path $releaseDir | Out-Null
$sourceInstaller = Join-Path $env:RUNNER_TEMP "tools-pack/out/win/namespaces/release-beta-win/builder/Open Design-release-beta-win-setup.exe"
if (!(Test-Path $sourceInstaller)) {
throw "expected installer not found at $sourceInstaller"
}
$windowsAssetSuffix = ".unsigned"
$versionedInstaller = "open-design-${{ needs.metadata.outputs.beta_version }}$windowsAssetSuffix-win-x64-setup.exe"
$checksumFile = "$versionedInstaller.sha256"
Copy-Item $sourceInstaller (Join-Path $releaseDir $versionedInstaller)
$installerPath = Join-Path $releaseDir $versionedInstaller
$hash = (Get-FileHash -Path $installerPath -Algorithm SHA256).Hash.ToLowerInvariant()
"$hash $versionedInstaller" | Set-Content -Path (Join-Path $releaseDir $checksumFile)
$installerBytes = [System.IO.File]::ReadAllBytes($installerPath)
$installerSha512 = [System.Convert]::ToBase64String([System.Security.Cryptography.SHA512]::Create().ComputeHash($installerBytes))
$installerSize = (Get-Item $installerPath).Length
$publicOrigin = $env:CLOUDFLARE_R2_RELEASES_PUBLIC_ORIGIN.TrimEnd("/")
$versionPrefix = "beta/versions/${{ needs.metadata.outputs.beta_version }}${{ needs.metadata.outputs.asset_version_suffix }}"
$installerUrl = "$publicOrigin/$versionPrefix/$versionedInstaller"
$releaseDate = [DateTime]::UtcNow.ToString("yyyy-MM-ddTHH:mm:ssZ")
@(
'version: "${{ needs.metadata.outputs.beta_version }}"'
'files:'
" - url: `"$installerUrl`""
" sha512: `"$installerSha512`""
" size: $installerSize"
"path: `"$installerUrl`""
"sha512: `"$installerSha512`""
"releaseDate: `"$releaseDate`""
"releaseNotes: `"Open Design beta ${{ needs.metadata.outputs.beta_version }}$windowsAssetSuffix`""
) | Set-Content -Path (Join-Path $releaseDir "latest.yml")
- name: Upload windows release bundle
uses: actions/upload-artifact@v7
with:
name: open-design-beta-win-release-assets
path: ${{ runner.temp }}/release-assets
build_linux:
name: Build beta linux x64
needs: metadata
if: ${{ inputs.enable_linux }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6.0.2
with:
fetch-depth: 0
- name: Setup pnpm
uses: pnpm/action-setup@v5
with:
version: 10.33.2
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: 24
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Apply beta package version
env:
BETA_VERSION: ${{ needs.metadata.outputs.beta_version }}
run: npm pkg set "version=$BETA_VERSION" --prefix apps/packaged
# `--containerized` builds the AppImage inside the electronuserland/builder
# Docker image (glibc 2.27 baseline) so the resulting binary runs on older
# distros than ubuntu-latest's glibc 2.39. Docker is preinstalled on the
# GitHub-hosted ubuntu-latest runner, so no extra setup is required.
- name: Build beta linux artifacts
run: |
set -euo pipefail
pnpm exec tools-pack linux build \
--dir "$RUNNER_TEMP/tools-pack" \
--namespace release-beta-linux \
--portable \
--to appimage \
--containerized \
--json
- name: Prepare linux beta assets
env:
BETA_VERSION: ${{ needs.metadata.outputs.beta_version }}
run: |
set -euo pipefail
release_dir="$RUNNER_TEMP/release-assets"
mkdir -p "$release_dir"
source_appimage="$RUNNER_TEMP/tools-pack/out/linux/namespaces/release-beta-linux/builder/Open Design-release-beta-linux.AppImage"
if [ ! -f "$source_appimage" ]; then
echo "expected AppImage not found at $source_appimage" >&2
exit 1
fi
# Linux currently has no signing path in tools-pack, so the suffix is
# hardcoded to .unsigned (matching the windows convention above).
linux_asset_suffix=".unsigned"
versioned_appimage="open-design-${BETA_VERSION}${linux_asset_suffix}-linux-x64.AppImage"
checksum_file="$versioned_appimage.sha256"
cp "$source_appimage" "$release_dir/$versioned_appimage"
(
cd "$release_dir"
sha256sum "$versioned_appimage" > "$checksum_file"
)
- name: Upload linux release bundle
uses: actions/upload-artifact@v7
with:
name: open-design-beta-linux-release-assets
path: ${{ runner.temp }}/release-assets
publish:
name: Publish beta release to R2
needs:
- metadata
- build_mac
- build_win
- build_linux
if: >-
${{
always() &&
!cancelled() &&
needs.metadata.result == 'success' &&
(inputs.enable_mac || inputs.enable_win || inputs.enable_linux) &&
(!inputs.enable_mac || needs.build_mac.result == 'success') &&
(!inputs.enable_win || needs.build_win.result == 'success') &&
(!inputs.enable_linux || needs.build_linux.result == 'success')
}}
runs-on: ubuntu-latest
env:
AWS_ACCESS_KEY_ID: ${{ secrets.CLOUDFLARE_R2_RELEASES_AK }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.CLOUDFLARE_R2_RELEASES_SK }}
AWS_DEFAULT_REGION: auto
AWS_EC2_METADATA_DISABLED: "true"
CLOUDFLARE_R2_RELEASES_BUCKET: ${{ secrets.CLOUDFLARE_R2_RELEASES_BUCKET }}
CLOUDFLARE_R2_RELEASES_PUBLIC_ORIGIN: ${{ vars.CLOUDFLARE_R2_RELEASES_PUBLIC_ORIGIN }}
CLOUDFLARE_R2_RELEASES_URL: ${{ secrets.CLOUDFLARE_R2_RELEASES_URL }}
ASSET_VERSION_SUFFIX: ${{ needs.metadata.outputs.asset_version_suffix }}
BASE_VERSION: ${{ needs.metadata.outputs.base_version }}
BETA_VERSION: ${{ needs.metadata.outputs.beta_version }}
BRANCH_NAME: ${{ needs.metadata.outputs.branch }}
ENABLE_LINUX: ${{ inputs.enable_linux }}
ENABLE_MAC: ${{ inputs.enable_mac }}
ENABLE_WIN: ${{ inputs.enable_win }}
RELEASE_SIGNED: ${{ needs.metadata.outputs.signed }}
STATE_SOURCE: ${{ needs.metadata.outputs.state_source }}
steps:
- name: Download mac release bundle
if: ${{ inputs.enable_mac }}
uses: actions/download-artifact@v8
with:
name: open-design-beta-mac-release-assets
path: ${{ runner.temp }}/release-assets/mac
- name: Download windows release bundle
if: ${{ inputs.enable_win }}
uses: actions/download-artifact@v8
with:
name: open-design-beta-win-release-assets
path: ${{ runner.temp }}/release-assets/win
- name: Download linux release bundle
if: ${{ inputs.enable_linux }}
uses: actions/download-artifact@v8
with:
name: open-design-beta-linux-release-assets
path: ${{ runner.temp }}/release-assets/linux
- name: Download mac e2e spec report
if: ${{ inputs.enable_mac }}
uses: actions/download-artifact@v8
with:
name: open-design-beta-mac-e2e-report
path: ${{ runner.temp }}/release-report/mac
- name: Download windows e2e spec report
if: ${{ inputs.enable_win }}
uses: actions/download-artifact@v8
with:
name: open-design-beta-win-e2e-report
path: ${{ runner.temp }}/release-report/win
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: 24
- name: Publish beta assets and metadata to R2
id: r2
run: |
set -euo pipefail
for name in AWS_ACCESS_KEY_ID AWS_SECRET_ACCESS_KEY CLOUDFLARE_R2_RELEASES_BUCKET CLOUDFLARE_R2_RELEASES_PUBLIC_ORIGIN CLOUDFLARE_R2_RELEASES_URL; do
if [ -z "${!name}" ]; then
echo "$name is required" >&2
exit 1
fi
done
release_root="$RUNNER_TEMP/release-assets"
report_root="$RUNNER_TEMP/release-report"
public_origin="${CLOUDFLARE_R2_RELEASES_PUBLIC_ORIGIN%/}"
version_prefix="beta/versions/${BETA_VERSION}${ASSET_VERSION_SUFFIX}"
latest_prefix="beta/latest"
upload() {
local file_path="$1"
local object_key="$2"
local content_type="$3"
local cache_control="$4"
if [ ! -f "$file_path" ]; then
echo "expected upload file not found: $file_path" >&2
exit 1
fi
aws --endpoint-url "${CLOUDFLARE_R2_RELEASES_URL%/}" s3api put-object \
--bucket "$CLOUDFLARE_R2_RELEASES_BUCKET" \
--key "$object_key" \
--body "$file_path" \
--content-type "$content_type" \
--cache-control "$cache_control" \
--no-cli-pager >/dev/null
}
report_content_type() {
case "$1" in
*.html) printf '%s' "text/html; charset=utf-8" ;;
*.json) printf '%s' "application/json; charset=utf-8" ;;
*.log) printf '%s' "text/plain; charset=utf-8" ;;
*.png) printf '%s' "image/png" ;;
*.txt) printf '%s' "text/plain; charset=utf-8" ;;
*.xml) printf '%s' "application/xml; charset=utf-8" ;;
*) printf '%s' "application/octet-stream" ;;
esac
}
upload_report_tree() {
local root="$1"
if [ ! -d "$root" ]; then
echo "e2e spec report root does not exist at $root; skipping"
return
fi
local uploaded_count=0
while IFS= read -r -d '' file_path; do
local relative_path="${file_path#"${root}/"}"
upload "$file_path" "$version_prefix/report/$relative_path" "$(report_content_type "$relative_path")" "public, max-age=31536000, immutable"
uploaded_count=$((uploaded_count + 1))
done < <(find "$root" -type f -print0 | sort -z)
echo "uploaded e2e spec report files: $uploaded_count"
}
mac_dmg="open-design-${BETA_VERSION}${ASSET_VERSION_SUFFIX}-mac-arm64.dmg"
mac_zip="open-design-${BETA_VERSION}${ASSET_VERSION_SUFFIX}-mac-arm64.zip"
win_installer="open-design-${BETA_VERSION}.unsigned-win-x64-setup.exe"
linux_appimage="open-design-${BETA_VERSION}.unsigned-linux-x64.AppImage"
metadata_path="$release_root/metadata.json"
if [ "$ENABLE_MAC" = "true" ]; then
upload "$release_root/mac/$mac_dmg" "$version_prefix/$mac_dmg" "application/x-apple-diskimage" "public, max-age=31536000, immutable"
upload "$release_root/mac/$mac_zip" "$version_prefix/$mac_zip" "application/zip" "public, max-age=31536000, immutable"
upload "$release_root/mac/$mac_dmg.sha256" "$version_prefix/$mac_dmg.sha256" "text/plain; charset=utf-8" "public, max-age=31536000, immutable"
upload "$release_root/mac/$mac_zip.sha256" "$version_prefix/$mac_zip.sha256" "text/plain; charset=utf-8" "public, max-age=31536000, immutable"
upload "$release_root/mac/latest-mac.yml" "$version_prefix/latest-mac.yml" "application/x-yaml; charset=utf-8" "public, max-age=31536000, immutable"
upload "$release_root/mac/latest-mac.yml" "$latest_prefix/latest-mac.yml" "application/x-yaml; charset=utf-8" "public, max-age=60, must-revalidate"
{
echo "mac_dmg_url=$public_origin/$version_prefix/$mac_dmg"
echo "mac_zip_url=$public_origin/$version_prefix/$mac_zip"
echo "mac_feed_url=$public_origin/$latest_prefix/latest-mac.yml"
} >> "$GITHUB_OUTPUT"
fi
if [ "$ENABLE_WIN" = "true" ]; then
upload "$release_root/win/$win_installer" "$version_prefix/$win_installer" "application/vnd.microsoft.portable-executable" "public, max-age=31536000, immutable"
upload "$release_root/win/$win_installer.sha256" "$version_prefix/$win_installer.sha256" "text/plain; charset=utf-8" "public, max-age=31536000, immutable"
upload "$release_root/win/latest.yml" "$version_prefix/latest.yml" "application/x-yaml; charset=utf-8" "public, max-age=31536000, immutable"
upload "$release_root/win/latest.yml" "$latest_prefix/latest.yml" "application/x-yaml; charset=utf-8" "public, max-age=60, must-revalidate"
{
echo "win_installer_url=$public_origin/$version_prefix/$win_installer"
echo "win_feed_url=$public_origin/$latest_prefix/latest.yml"
} >> "$GITHUB_OUTPUT"
fi
if [ "$ENABLE_LINUX" = "true" ]; then
upload "$release_root/linux/$linux_appimage" "$version_prefix/$linux_appimage" "application/octet-stream" "public, max-age=31536000, immutable"
upload "$release_root/linux/$linux_appimage.sha256" "$version_prefix/$linux_appimage.sha256" "text/plain; charset=utf-8" "public, max-age=31536000, immutable"
{
echo "linux_appimage_url=$public_origin/$version_prefix/$linux_appimage"
} >> "$GITHUB_OUTPUT"
fi
upload_report_tree "$report_root"
RELEASE_ROOT="$release_root" \
PUBLIC_ORIGIN="$public_origin" \
VERSION_PREFIX="$version_prefix" \
LATEST_PREFIX="$latest_prefix" \
MAC_DMG="$mac_dmg" \
MAC_ZIP="$mac_zip" \
WIN_INSTALLER="$win_installer" \
LINUX_APPIMAGE="$linux_appimage" \
METADATA_PATH="$metadata_path" \
node --input-type=module <<'NODE'
import { existsSync, statSync, writeFileSync } from "node:fs";
import { join } from "node:path";
const env = process.env;
const enabled = (name) => env[name] === "true";
const publicOrigin = env.PUBLIC_ORIGIN;
const versionPrefix = env.VERSION_PREFIX;
const latestPrefix = env.LATEST_PREFIX;
const releaseRoot = env.RELEASE_ROOT;
const url = (prefix, name) => `${publicOrigin}/${prefix}/${name}`;
const mustExist = (path) => {
if (!existsSync(path)) throw new Error(`metadata source file missing: ${path}`);
return statSync(path).size;
};
const fileEntry = (directory, name, contentType) => {
const path = join(releaseRoot, directory, name);
return {
contentType,
name,
sha256Url: url(versionPrefix, `${name}.sha256`),
size: mustExist(path),
url: url(versionPrefix, name),
};
};
const platforms = {};
if (enabled("ENABLE_MAC")) {
platforms.mac = {
arch: "arm64",
enabled: true,
feed: {
latestUrl: url(latestPrefix, "latest-mac.yml"),
name: "latest-mac.yml",
url: url(versionPrefix, "latest-mac.yml"),
},
signed: env.RELEASE_SIGNED === "true",
artifacts: {
dmg: fileEntry("mac", env.MAC_DMG, "application/x-apple-diskimage"),
zip: fileEntry("mac", env.MAC_ZIP, "application/zip"),
},
};
}
if (enabled("ENABLE_WIN")) {
platforms.win = {
arch: "x64",
enabled: true,
feed: {
latestUrl: url(latestPrefix, "latest.yml"),
name: "latest.yml",
url: url(versionPrefix, "latest.yml"),
},
signed: false,
artifacts: {
installer: fileEntry("win", env.WIN_INSTALLER, "application/vnd.microsoft.portable-executable"),
},
};
}
if (enabled("ENABLE_LINUX")) {
platforms.linux = {
arch: "x64",
enabled: true,
feed: null,
signed: false,
artifacts: {
appImage: fileEntry("linux", env.LINUX_APPIMAGE, "application/octet-stream"),
},
};
}
const metadata = {
assetVersionSuffix: env.ASSET_VERSION_SUFFIX,
baseVersion: env.BASE_VERSION,
betaNumber: Number(env.BETA_VERSION.split("-beta.")[1]),
betaVersion: env.BETA_VERSION,
channel: "beta",
generatedAt: new Date().toISOString(),
github: {
branch: env.BRANCH_NAME,
commit: env.GITHUB_SHA,
repository: env.GITHUB_REPOSITORY,
runAttempt: Number(env.GITHUB_RUN_ATTEMPT),
runId: Number(env.GITHUB_RUN_ID),
workflow: env.GITHUB_WORKFLOW,
},
platforms,
r2: {
latestMetadataUrl: url(latestPrefix, "metadata.json"),
latestPrefix,
publicOrigin,
reportUrl: url(versionPrefix, "report/"),
versionMetadataUrl: url(versionPrefix, "metadata.json"),
versionPrefix,
},
signed: env.RELEASE_SIGNED === "true",
stateSource: env.STATE_SOURCE,
version: 1,
};
writeFileSync(env.METADATA_PATH, `${JSON.stringify(metadata, null, 2)}\n`, "utf8");
NODE
upload "$metadata_path" "$version_prefix/metadata.json" "application/json; charset=utf-8" "public, max-age=31536000, immutable"
upload "$metadata_path" "$latest_prefix/metadata.json" "application/json; charset=utf-8" "public, max-age=60, must-revalidate"
{
echo "metadata_url=$public_origin/$latest_prefix/metadata.json"
echo "report_url=$public_origin/$version_prefix/report/"
echo "version_metadata_url=$public_origin/$version_prefix/metadata.json"
echo "version_prefix=$version_prefix"
} >> "$GITHUB_OUTPUT"
- name: Verify R2 beta publish
run: |
set -euo pipefail
metadata_url="${{ steps.r2.outputs.metadata_url }}"
downloaded_metadata="$RUNNER_TEMP/metadata.json"
curl -fsSL "$metadata_url?run=${GITHUB_RUN_ID}" -o "$downloaded_metadata"
DOWNLOADED_METADATA="$downloaded_metadata" \
EXPECTED_BETA_VERSION="${{ needs.metadata.outputs.beta_version }}" \
node --input-type=module <<'NODE'
import { readFileSync } from "node:fs";
const metadata = JSON.parse(readFileSync(process.env.DOWNLOADED_METADATA, "utf8"));
if (metadata.betaVersion !== process.env.EXPECTED_BETA_VERSION) {
throw new Error("unexpected metadata betaVersion: " + metadata.betaVersion);
}
if (metadata.channel !== "beta") {
throw new Error("unexpected metadata channel: " + metadata.channel);
}
NODE
if [ "$ENABLE_MAC" = "true" ]; then
downloaded_feed="$RUNNER_TEMP/latest-mac.yml"
curl -fsSL "${{ steps.r2.outputs.mac_feed_url }}?run=${GITHUB_RUN_ID}" -o "$downloaded_feed"
grep -F 'version: "${{ needs.metadata.outputs.beta_version }}"' "$downloaded_feed"
grep -F "${{ steps.r2.outputs.mac_zip_url }}" "$downloaded_feed"
curl -fsSI "${{ steps.r2.outputs.mac_zip_url }}" >/dev/null
curl -fsSI "${{ steps.r2.outputs.mac_dmg_url }}" >/dev/null
curl -fsSI "${{ steps.r2.outputs.report_url }}mac/manifest.json" >/dev/null
curl -fsSI "${{ steps.r2.outputs.report_url }}mac/screenshots/open-design-mac-smoke.png" >/dev/null
curl -fsSI "${{ steps.r2.outputs.report_url }}mac/vitest.log" >/dev/null
fi
if [ "$ENABLE_WIN" = "true" ]; then
downloaded_feed="$RUNNER_TEMP/latest.yml"
curl -fsSL "${{ steps.r2.outputs.win_feed_url }}?run=${GITHUB_RUN_ID}" -o "$downloaded_feed"
grep -F 'version: "${{ needs.metadata.outputs.beta_version }}"' "$downloaded_feed"
grep -F "${{ steps.r2.outputs.win_installer_url }}" "$downloaded_feed"
curl -fsSI "${{ steps.r2.outputs.win_installer_url }}" >/dev/null
curl -fsSI "${{ steps.r2.outputs.report_url }}win/manifest.json" >/dev/null
curl -fsSI "${{ steps.r2.outputs.report_url }}win/screenshots/open-design-win-smoke.png" >/dev/null
curl -fsSI "${{ steps.r2.outputs.report_url }}win/vitest.log" >/dev/null
fi
if [ "$ENABLE_LINUX" = "true" ]; then
curl -fsSI "${{ steps.r2.outputs.linux_appimage_url }}" >/dev/null
fi
- name: Publish summary
run: |
{
echo "## Beta release"
echo "- Channel: beta"
echo "- Version: ${{ needs.metadata.outputs.beta_version }}"
echo "- Artifact path: ${{ steps.r2.outputs.version_prefix }}"
echo "- State source: ${{ needs.metadata.outputs.state_source }}"
echo "- Metadata: ${{ steps.r2.outputs.metadata_url }}"
echo "- Version metadata: ${{ steps.r2.outputs.version_metadata_url }}"
echo "- E2E report path: ${{ steps.r2.outputs.version_prefix }}/report/"
echo "- E2E report URL: ${{ steps.r2.outputs.report_url }}"
echo "- mac enabled: $ENABLE_MAC"
echo "- windows enabled: $ENABLE_WIN"
echo "- linux enabled: $ENABLE_LINUX"
echo "- mac signed/notarized: ${{ needs.metadata.outputs.signed }}"
if [ "$ENABLE_MAC" = "true" ]; then
echo "- mac dmg: ${{ steps.r2.outputs.mac_dmg_url }}"
echo "- mac zip: ${{ steps.r2.outputs.mac_zip_url }}"
echo "- mac feed: ${{ steps.r2.outputs.mac_feed_url }}"
echo "- mac e2e manifest: ${{ steps.r2.outputs.report_url }}mac/manifest.json"
echo "- mac e2e screenshot: ${{ steps.r2.outputs.report_url }}mac/screenshots/open-design-mac-smoke.png"
echo "- mac e2e vitest log: ${{ steps.r2.outputs.report_url }}mac/vitest.log"
fi
if [ "$ENABLE_WIN" = "true" ]; then
echo "- win installer: ${{ steps.r2.outputs.win_installer_url }}"
echo "- win feed: ${{ steps.r2.outputs.win_feed_url }}"
echo "- win e2e manifest: ${{ steps.r2.outputs.report_url }}win/manifest.json"
echo "- win e2e screenshot: ${{ steps.r2.outputs.report_url }}win/screenshots/open-design-win-smoke.png"
echo "- win e2e vitest log: ${{ steps.r2.outputs.report_url }}win/vitest.log"
fi
if [ "$ENABLE_LINUX" = "true" ]; then
echo "- linux AppImage: ${{ steps.r2.outputs.linux_appimage_url }}"
echo "- linux feed: not published; AppImage updater is not wired"
fi
echo "- GitHub Releases: not used for beta channel publishing"
echo "- Git tags: not used for beta channel publishing"
} >> "$GITHUB_STEP_SUMMARY"