Skip to content

Commit 22d6add

Browse files
authored
Merge pull request #2358 from nebius/bugfix/e2e-jail-upload-should-not-fail-on-semicolons
SCHED-951: e2e jail upload should not fail on semicolons
2 parents ba0e01c + f89d0e2 commit 22d6add

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/e2e_test.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -511,12 +511,18 @@ jobs:
511511
echo "No running sconfigcontroller pod found, skipping jail files collection"
512512
fi
513513
514+
- name: Zip Jail
515+
if: always()
516+
run: |
517+
zip -r jail jail
518+
514519
- name: Upload Jail
515520
if: always()
516521
uses: actions/upload-artifact@v7
517522
with:
523+
archive: false
518524
name: jail
519-
path: ./jail
525+
path: jail.zip
520526
retention-days: 7
521527

522528
- name: Terraform Destroy

0 commit comments

Comments
 (0)