Skip to content

Commit d087baf

Browse files
committed
Fix test embeded assets in CI
Signed-off-by: fpv.dev <kich@octra.org>
1 parent a0bf92f commit d087baf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ jobs:
8484
fi
8585
8686
# Test embedded assets
87-
if curl -f http://localhost:8888/assets/logo.svg > /dev/null 2>&1; then
87+
if curl -f http://localhost:8888/static/logo.svg > /dev/null 2>&1; then
8888
echo "✓ Embedded assets are working"
8989
else
9090
echo "✗ Embedded assets failed"
@@ -123,7 +123,7 @@ jobs:
123123
124124
# Test embedded assets
125125
try {
126-
$response = Invoke-WebRequest -Uri "http://localhost:8888/assets/logo.svg" -TimeoutSec 10
126+
$response = Invoke-WebRequest -Uri "http://localhost:8888/static/logo.svg" -TimeoutSec 10
127127
if ($response.StatusCode -eq 200) {
128128
Write-Host "✓ Embedded assets are working"
129129
} else {

0 commit comments

Comments
 (0)