Skip to content

Commit 76c2165

Browse files
committed
Fixing deploy workflow by updating apt cache during this build phase
1 parent e67c930 commit 76c2165

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.circleci/config.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,9 @@ jobs:
105105
at: /
106106
- run:
107107
name: Install dependencies
108-
command: sudo apt -y install gmic optipng
108+
command: |
109+
sudo apt-get update
110+
sudo apt -y install gmic optipng
109111
- run:
110112
# NOTE: We try to retry the script up to 5 times if it fails. The command could fail due
111113
# to the race (e.g. we try to push changes to index, but index has been updated by some

0 commit comments

Comments
 (0)