i18n: Translations update from Hosted Weblate (#159) #966
This file contains hidden or 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: Ubuntu CI | |
on: [push, pull_request] | |
jobs: | |
ubuntu-24-04-build: | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Get build dept. | |
run: | | |
sudo apt update | |
sudo apt install cmake qt6-base-dev qt6-svg-dev qt6-tools-dev libexiv2-dev | |
- name: Build it | |
run: | | |
mkdir build | |
cd build | |
cmake ../ | |
make | |
cpack -G DEB | |
- name: Try install it | |
run: | | |
cd build | |
sudo apt install ./*.deb | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: ubuntu-24.04-deb-package | |
path: build/*.deb |