Skip to content

Commit c845e1a

Browse files
Aleksandr Slapoguzovclaude
andcommitted
fix: remove apt-get update, add retry for zip install
🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent b8ca0e9 commit c845e1a

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

.github/workflows/release.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,12 @@ jobs:
1414
- uses: actions/checkout@v4
1515
- uses: oven-sh/setup-bun@v2
1616
- name: Install zip
17-
run: sudo apt-get update && sudo apt-get install -y zip
17+
run: |
18+
for i in 1 2 3; do
19+
sudo apt-get install -y zip && break
20+
echo "Attempt $i failed, retrying in 5s..."
21+
sleep 5
22+
done
1823
- run: bun install
1924
- run: bun run typecheck
2025
- run: bun test

0 commit comments

Comments
 (0)