Fixed PR workflow double zipping (#1162)

* Added .zip extension to avoid double zipping

* Fixed double zip
This commit is contained in:
Gunnar Skjold
2026-03-15 10:07:45 +01:00
committed by GitHub
parent 64a0667947
commit 13aff62aff
2 changed files with 4 additions and 3 deletions

View File

@@ -78,7 +78,7 @@ jobs:
const envs = ['esp32s2', 'esp32s3', 'esp32c3', 'esp32', 'esp32solo', 'esp8266'];
const lines = envs.map(env => {
const artifact = artifacts.find(a => a.name === env);
const artifact = artifacts.find(a => a.name === `${env}.zip`);
if (artifact) {
// The artifact download page URL - directly navigable in the browser
const artifactUrl = `${runUrl}#artifacts-${env}`;