We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c48cb0b commit 27ca6f5Copy full SHA for 27ca6f5
.github/workflows/compare-builds.yml
@@ -103,6 +103,7 @@ jobs:
103
- name: Combine results
104
id: combine
105
run: |
106
+ ls -r
107
cat results/**/*.txt > combined.txt
108
echo "combined<<EOF" >> $GITHUB_OUTPUT
109
cat combined.txt >> $GITHUB_OUTPUT
scripts/compare-builds/web.mjs
@@ -3,7 +3,7 @@ import path from 'node:path';
3
import { fileURLToPath } from 'node:url';
4
5
const [BASE, HEAD] = ['BASE', 'HEAD'].map(env =>
6
- fileURLToPath(import.meta.resolve(`../../out/${process.env[env] ?? './'}`))
+ fileURLToPath(import.meta.resolve(`../../out/${process.env[env]}/web`))
7
);
8
9
/**
0 commit comments