Include authors in credits window of AppImages
[geeqie.git] / .github / workflows / appimage-x86_64.yml
1 name: Geeqie x86_64 AppImage build
2 run-name: ${{ github.actor }} is running Geeqie x86_64 AppImage build
3 on: [push]
4 jobs:
5   Build-AppImage:
6     runs-on: ubuntu-22.04
7     steps:
8     - run: sudo apt-get update
9     - run: sudo apt-get install build-essential libgtk-3-dev libgtk-3-bin
10     - run: sudo apt-get install evince
11     - run: sudo apt-get install libarchive-dev
12     - run: sudo apt-get install libchamplain-0.12-dev libchamplain-gtk-0.12-dev
13     - run: sudo apt-get install libffmpegthumbnailer-dev
14     - run: sudo apt-get install libgexiv2-dev
15     - run: sudo apt-get install libgspell-1-dev
16     - run: sudo apt-get install libheif-dev
17     - run: sudo apt-get install liblua5.3-dev
18     - run: sudo apt-get install libpoppler-glib-dev
19     - run: sudo apt-get install libraw-dev libomp-dev
20     - run: sudo apt-get install libwebp-dev
21     - run: sudo apt-get install gettext
22
23     - uses: actions/checkout@v3
24     - run: git fetch --tags --force
25     - run: git fetch --depth=1000000
26     - uses: actions/setup-python@v4
27     - uses: BSFishy/meson-build@v1.0.3
28       with:
29         action: build
30         directory: build
31         options: --verbose
32         meson-version: 1.0.1
33
34     - name: build
35       run: DESTDIR=/home/runner/work/geeqie/geeqie/AppDir ninja -C build install
36     - name: build AppImage
37       uses: AppImageCrafters/build-appimage-action@master
38       with:
39         recipe: AppImageBuilder-x86_64.yml
40
41     - name: Create Release
42       uses: ncipollo/release-action@v1
43       with:
44          allowUpdates: true
45          tag: continuous
46          name: Continuous build
47          prerelease: true
48          artifacts: "Geeqie-latest-x86_64.AppImage"
49
50     - name: Upload logs
51       uses: actions/upload-artifact@v2
52       if: always()
53       with:
54         name: logs-all-build-appimage
55         path: /home/runner/work/geeqie/geeqie/build/meson-logs/*.txt
56         retention-days: 5