Skip to content

Commit 3016fe5

Browse files
authored
Merge pull request #6738 from NlightNFotis/fix_ubuntu_20_04_package_build
Add a missing update step to renew software sources in apt lists
2 parents 627faee + c3b3797 commit 3016fe5

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/release-packages.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@ jobs:
1313
with:
1414
submodules: recursive
1515
- name: Fetch dependencies
16-
run: sudo apt-get install --no-install-recommends -y g++ gdb flex bison cmake ninja-build maven jq libxml2-utils dpkg-dev ccache z3
16+
run: |
17+
sudo apt-get update
18+
sudo apt-get install --no-install-recommends -y g++ gdb flex bison cmake ninja-build maven jq libxml2-utils dpkg-dev ccache z3
1719
- name: Confirm z3 solver is available and log the version installed
1820
run: z3 --version
1921
- name: Prepare ccache

0 commit comments

Comments
 (0)