Skip to content

Don't edit manifest on Flatpak CI run

Snehit Sah requested to merge (removed):flatpak-no-source-update into master

Maintainers can take care of the edits while adding manifest to their source repos.

As an example,

{
    "name": "neochat",
    "buildsystem": "cmake-ninja",
    "sources": [
        {
            "type": "git",
            "url": "https://invent.kde.org/network/neochat"
        }
    ]
}

The maintainer can change above snippet should be changed to use current directory as a source, as below

{
    "name": "neochat",
    "buildsystem": "cmake-ninja",
    "sources": [
        {
            "type": "dir",
            "path": "."
        }
    ]
}

Basically we're not needing to rewrite manifest on every CI run.

Edited by Snehit Sah

Merge request reports