FIX: Ubuntu GitHub Action #149
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Ubuntu .deb | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: | | |
sudo apt update | |
sudo apt install -y --no-install-recommends build-essential devscripts debhelper cmake git libarchive-dev libcurl4-gnutls-dev | |
sudo apt install -y --no-install-recommends qt6-base-dev qt6-base-dev-tools qt6-declarative libqt6svg6-dev qt6-tools-dev libgnutls28-dev | |
sudo apt install -y --no-install-recommends qml6-module-qtquick2 qml6-module-qtquick-controls2 qml6-module-qtquick-layouts qml6-module-qtquick-templates2 qml6-module-qtquick-window2 qml6-module-qtgraphicaleffects | |
- name: Build | |
run: debuild -uc -us |