Find the generated .app bundle dynamically in release CI so macOS packaging no longer depends on the legacy TFTSR.app name. Add a unit test to prevent regressions by asserting the old hardcoded path is not reintroduced. Made-with: Cursor
24 lines
706 B
TypeScript
24 lines
706 B
TypeScript
import { describe, expect, it } from "vitest";
|
|
import { readFileSync } from "node:fs";
|
|
import path from "node:path";
|
|
|
|
const releaseWorkflowPath = path.resolve(
|
|
process.cwd(),
|
|
".gitea/workflows/release.yml",
|
|
);
|
|
|
|
describe("release workflow macOS bundle path", () => {
|
|
it("does not reference the legacy TFTSR.app bundle name", () => {
|
|
const workflow = readFileSync(releaseWorkflowPath, "utf-8");
|
|
|
|
expect(workflow).not.toContain("/bundle/macos/TFTSR.app");
|
|
});
|
|
|
|
it("resolves the macOS .app bundle dynamically", () => {
|
|
const workflow = readFileSync(releaseWorkflowPath, "utf-8");
|
|
|
|
expect(workflow).toContain("APP=$(find");
|
|
expect(workflow).toContain("-name \"*.app\"");
|
|
});
|
|
});
|