mirror of
https://github.com/RetroDECK/RetroDECK.git
synced 2024-11-21 21:45:39 +00:00
WORKFLOW: added appdata validation step on main [skip ci]
This commit is contained in:
parent
185779882b
commit
d6515099d1
5
.github/workflows/main-selfhosted.yml
vendored
5
.github/workflows/main-selfhosted.yml
vendored
|
@ -53,7 +53,10 @@ jobs:
|
|||
- name: Check versions (main only)
|
||||
id: check_version_string
|
||||
run: "automation_tools/main_version_checker.sh"
|
||||
continue-on-error: true
|
||||
|
||||
- name: Check versions (main only)
|
||||
id: check_version_string
|
||||
run: "automation_tools/manifest-validation.sh"
|
||||
|
||||
- name: "[DEBUG] Outputting manifest"
|
||||
run: cat net.retrodeck.retrodeck.yml
|
||||
|
|
5
automation_tools/manifest-validation.sh
Executable file
5
automation_tools/manifest-validation.sh
Executable file
|
@ -0,0 +1,5 @@
|
|||
#!/bin/bash
|
||||
|
||||
flatpak install -y flathub org.flatpak.Builder
|
||||
|
||||
flatpak run --command=appstream-util org.flatpak.Builder validate -v net.retrodeck.retrodeck.appdata.xml
|
Loading…
Reference in a new issue