Skip to content

Commit 27ca6f5

Browse files
committed
[wip]
1 parent c48cb0b commit 27ca6f5

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/compare-builds.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,7 @@ jobs:
103103
- name: Combine results
104104
id: combine
105105
run: |
106+
ls -r
106107
cat results/**/*.txt > combined.txt
107108
echo "combined<<EOF" >> $GITHUB_OUTPUT
108109
cat combined.txt >> $GITHUB_OUTPUT

scripts/compare-builds/web.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import path from 'node:path';
33
import { fileURLToPath } from 'node:url';
44

55
const [BASE, HEAD] = ['BASE', 'HEAD'].map(env =>
6-
fileURLToPath(import.meta.resolve(`../../out/${process.env[env] ?? './'}`))
6+
fileURLToPath(import.meta.resolve(`../../out/${process.env[env]}/web`))
77
);
88

99
/**

0 commit comments

Comments
 (0)