Skip to content

Commit

Permalink
Merge pull request #39 from matyalatte/fix_workflow
Browse files Browse the repository at this point in the history
fix an error for building action
  • Loading branch information
matyalatte authored Jul 21, 2024
2 parents c543722 + da66cb4 commit f7ec04b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/build_all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,9 @@ jobs:

- name: Install gtk for Linux
if: runner.os == 'Linux'
run: sudo apt -y install libgtk-3-dev
run: |
sudo apt-get update
sudo apt-get -y install libgtk-3-dev
- name: Build exe for Windows
if: runner.os == 'Windows'
Expand Down

0 comments on commit f7ec04b

Please sign in to comment.