Delete .gitea/workflows/release.yml and keep release orchestration in auto-tag.yml only, then update related workflow tests and docs to reference the unified pipeline. Made-with: Cursor
24 lines
707 B
TypeScript
24 lines
707 B
TypeScript
import { describe, expect, it } from "vitest";
|
|
import { readFileSync } from "node:fs";
|
|
import path from "node:path";
|
|
|
|
const autoTagWorkflowPath = path.resolve(
|
|
process.cwd(),
|
|
".gitea/workflows/auto-tag.yml",
|
|
);
|
|
|
|
describe("auto-tag release macOS bundle path", () => {
|
|
it("does not reference the legacy TFTSR.app bundle name", () => {
|
|
const workflow = readFileSync(autoTagWorkflowPath, "utf-8");
|
|
|
|
expect(workflow).not.toContain("/bundle/macos/TFTSR.app");
|
|
});
|
|
|
|
it("resolves the macOS .app bundle dynamically", () => {
|
|
const workflow = readFileSync(autoTagWorkflowPath, "utf-8");
|
|
|
|
expect(workflow).toContain("APP=$(find");
|
|
expect(workflow).toContain("-name \"*.app\"");
|
|
});
|
|
});
|