diff options
author | Sefa Eyeoglu <contact@scrumplex.net> | 2023-06-19 09:35:56 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-19 09:35:56 +0200 |
commit | af6bf11793fb463fe62c99695e56ff6599612d05 (patch) | |
tree | 61908a73410d1d73e98636c04bd4b01fc674e527 /.github | |
parent | 9d22fce53fef7481ad6804aac62c63c4e5411dcc (diff) | |
parent | d5b5f0503cc8d88809f82afc9407f89a4af604c6 (diff) | |
download | PrismLauncher-af6bf11793fb463fe62c99695e56ff6599612d05.tar.gz PrismLauncher-af6bf11793fb463fe62c99695e56ff6599612d05.tar.bz2 PrismLauncher-af6bf11793fb463fe62c99695e56ff6599612d05.zip |
Merge pull request #1224 from DioEgizio/add-appstream
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build.yml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 90b6cc76..c2966abe 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -191,7 +191,7 @@ jobs: if: runner.os == 'Linux' run: | sudo apt-get -y update - sudo apt-get -y install ninja-build extra-cmake-modules scdoc + sudo apt-get -y install ninja-build extra-cmake-modules scdoc appstream - name: Install Dependencies (macOS) if: runner.os == 'macOS' @@ -468,7 +468,8 @@ jobs: shell: bash run: | cmake --install ${{ env.BUILD_DIR }} --prefix ${{ env.INSTALL_APPIMAGE_DIR }}/usr - + mv ${{ env.INSTALL_APPIMAGE_DIR }}/usr/share/metainfo/org.prismlauncher.PrismLauncher.metainfo.xml ${{ env.INSTALL_APPIMAGE_DIR }}/usr/share/metainfo/org.prismlauncher.PrismLauncher.appdata.xml + export "NO_APPSTREAM=1" # we have to skip appstream checking because appstream on ubuntu 20.04 is outdated export OUTPUT="PrismLauncher-${{ runner.os }}-${{ env.VERSION }}-${{ inputs.build_type }}-x86_64.AppImage" chmod +x linuxdeploy-*.AppImage |