mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-06 06:00:43 +00:00
fix(release): align package acceptance with candidate source
This commit is contained in:
2
.github/workflows/package-acceptance.yml
vendored
2
.github/workflows/package-acceptance.yml
vendored
@@ -509,7 +509,7 @@ jobs:
|
||||
needs: resolve_package
|
||||
uses: ./.github/workflows/openclaw-live-and-e2e-checks-reusable.yml
|
||||
with:
|
||||
ref: ${{ inputs.workflow_ref }}
|
||||
ref: ${{ needs.resolve_package.outputs.package_source_sha || inputs.workflow_ref }}
|
||||
include_repo_e2e: false
|
||||
include_release_path_suites: ${{ needs.resolve_package.outputs.include_release_path_suites == 'true' }}
|
||||
include_openwebui: ${{ needs.resolve_package.outputs.include_openwebui == 'true' }}
|
||||
|
||||
@@ -77,7 +77,9 @@ describe("package acceptance workflow", () => {
|
||||
expect(workflow).toContain(
|
||||
"uses: ./.github/workflows/openclaw-live-and-e2e-checks-reusable.yml",
|
||||
);
|
||||
expect(workflow).toContain("ref: ${{ inputs.workflow_ref }}");
|
||||
expect(workflow).toContain(
|
||||
"ref: ${{ needs.resolve_package.outputs.package_source_sha || inputs.workflow_ref }}",
|
||||
);
|
||||
expect(workflow).toContain(
|
||||
"package_artifact_name: ${{ needs.resolve_package.outputs.package_artifact_name }}",
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user