Skip to content

Commit

Permalink
Add apt-get update to publish action (#562)
Browse files Browse the repository at this point in the history
Signed-off-by: Matthew Peveler <[email protected]>
  • Loading branch information
MasterOdin authored Jan 24, 2021
1 parent d717dbe commit cc3c58f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ jobs:
steps:
- name: Install Linux Dependencies
if: ${{ matrix.os == 'ubuntu-latest' }}
run: sudo apt-get install libgnome-keyring-dev icnsutils graphicsmagick rpm bsdtar gcc-multilib g++-multilib
run: |
sudo apt-get update
sudo apt-get install libgnome-keyring-dev icnsutils graphicsmagick rpm bsdtar gcc-multilib g++-multilib
- uses: actions/checkout@v2

Expand Down

0 comments on commit cc3c58f

Please sign in to comment.