Skip to content

Commit

Permalink
build: run apt update when fetching dependencies for CD build
Browse files Browse the repository at this point in the history
  • Loading branch information
mlugg committed Jun 28, 2021
1 parent 7441596 commit e943d30
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/CD.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,9 @@ jobs:
- name: Checkout
uses: actions/checkout@v1
- name: Install Dependencies
run: sudo apt-get install -y g++-10-multilib
run: |
sudo apt-get update
sudo apt-get install -y g++-10-multilib
- name: Build
run: make
- name: Upload Asset
Expand Down

0 comments on commit e943d30

Please sign in to comment.