fix: make OTA workflow YAML valid and remove debug files
Some checks failed
OTA build / build-ota (push) Failing after 1m29s
Some checks failed
OTA build / build-ota (push) Failing after 1m29s
This commit is contained in:
@@ -74,10 +74,10 @@ jobs:
|
||||
package_version="${GITHUB_SHA}"
|
||||
curl --fail --silent --show-error --user "${GITHUB_ACTOR}:${GITEA_TOKEN}" "${GITHUB_SERVER_URL}/api/v1/packages/${GITHUB_REPOSITORY_OWNER}/generic/${package_name}/${package_version}/files" > /tmp/package-files.json
|
||||
python3 - <<'PY'
|
||||
import json
|
||||
from pathlib import Path
|
||||
files=json.loads(Path('/tmp/package-files.json').read_text())
|
||||
assert files, 'no package files returned'
|
||||
for item in files:
|
||||
import json
|
||||
from pathlib import Path
|
||||
files = json.loads(Path('/tmp/package-files.json').read_text())
|
||||
assert files, 'no package files returned'
|
||||
for item in files:
|
||||
print(item.get('name') or item.get('file_name') or item)
|
||||
PY
|
||||
PY
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
2026-08-30T02:53:27Z trigger push-based OTA verification
|
||||
Reference in New Issue
Block a user