forked from flathub/net.rpcs3.RPCS3
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
65 additions
and
24 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
name: "Build Artifacts for RetroDECK main manifest" | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
- main | ||
workflow_call: | ||
|
||
jobs: | ||
Building-project: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
|
||
- name: "Install dependencies" | ||
uses: RetroDECK/components-template/.github/workflows/install_dependencies.yml@main | ||
|
||
- name: "Build project" | ||
uses: RetroDECK/components-template/.github/workflows/build_artifacts.yml@main |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
name: "Sync with Upstream and Create PR" | ||
|
||
on: | ||
workflow_call: | ||
schedule: | ||
- cron: "30 0 * * *" # Run every day at 00:30 UTC (9:30 JST) | ||
|
||
jobs: | ||
Upstream-sync: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
|
||
- name: "Sync with upstream" | ||
uses: RetroDECK/components-template/.github/workflows/pr_from_upstream.yml@main |
This file was deleted.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<component type="desktop"> | ||
<id>org.solarus_games.solarus.Launcher.desktop</id> | ||
<metadata_license>CC0-1.0</metadata_license> | ||
<project_license>GPL-3.0</project_license> | ||
<name>Solarus Launcher</name> | ||
<summary>Browse and play your Solarus quest collection.</summary> | ||
<description> | ||
<p> | ||
Solarus Launcher is a desktop GUI frontend that allows to browse and play to Solarus quests, which are video games made with the Solarus game engine. | ||
</p> | ||
</description> | ||
<screenshots> | ||
<screenshot type="default"> | ||
<image>https://www.solarus-games.org/data/en/entities/article/old/2016/07/images/solarus-launcher.png</image> | ||
</screenshot> | ||
</screenshots> | ||
<url type="homepage">https://www.solarus-games.org/</url> | ||
<update_contact>christopho@solarus-games.org</update_contact> | ||
<launchable type="desktop-id">org.solarus_games.solarus.Launcher.desktop</launchable> | ||
<project_group>Solarus</project_group> | ||
<developer_name>Solarus Team</developer_name> | ||
<content_rating type="oars-1.1"> | ||
<content_attribute id="violence-cartoon">moderate</content_attribute> | ||
<content_attribute id="violence-bloodshed">mild</content_attribute> | ||
</content_rating> | ||
<releases> | ||
<release version="1.6.5" date="2021-04-06" /> | ||
</releases> | ||
</component> |