Skip to content

Commit

Permalink
run apt-get update for GH linux
Browse files Browse the repository at this point in the history
  • Loading branch information
binji committed Aug 21, 2021
1 parent b983f55 commit 8abd0d3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ jobs:
submodules: true

- name: install packages (linux)
run: sudo apt-get install ninja-build libsdl2-dev
run: |
sudo apt-get update
sudo apt-get install ninja-build libsdl2-dev
if: matrix.os == 'ubuntu-latest'

- name: install packages (macos)
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/build_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ jobs:
submodules: true

- name: install packages (linux)
run: sudo apt-get install ninja-build libsdl2-dev
run: |
sudo apt-get update
sudo apt-get install ninja-build libsdl2-dev
if: matrix.os == 'ubuntu-latest'

- name: install packages (macos)
Expand Down

0 comments on commit 8abd0d3

Please sign in to comment.