Skip to content

Commit

Permalink
Fix GitHub Action for building Debian package (#1410)
Browse files Browse the repository at this point in the history
- Update before installing
- Use `apt-get` instead of `apt`, which "does not have a stable CLI interface"
  • Loading branch information
johnfactotum authored Oct 12, 2024
1 parent 4f867cc commit ae66187
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/deb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ jobs:
with:
submodules: 'true'

- run: sudo apt install build-essential debhelper meson gettext pkg-config libglib2.0-dev gjs appstream libgjs-dev libgtk-4-dev libadwaita-1-dev libwebkitgtk-6.0-dev desktop-file-utils
- run: sudo apt-get update
- run: sudo apt-get install build-essential debhelper meson gettext pkg-config libglib2.0-dev gjs appstream libgjs-dev libgtk-4-dev libadwaita-1-dev libwebkitgtk-6.0-dev desktop-file-utils
- run: dpkg-buildpackage -us -uc -nc
- run: mv ../*.deb .
- uses: actions/upload-artifact@v4
Expand Down

0 comments on commit ae66187

Please sign in to comment.