forked from flatpak/flatpak-github-actions
-
Notifications
You must be signed in to change notification settings - Fork 6
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
1 parent
ab7f3ae
commit 51b500f
Showing
3 changed files
with
19 additions
and
0 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,3 @@ | ||
github: bilelmoussaoui | ||
patreon: bilelmoussaoui | ||
custom: https://www.paypal.me/BilalELMoussaoui |
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,13 @@ | ||
FROM registry.gitlab.gnome.org/gnome/gnome-runtime-images/gnome:master | ||
|
||
LABEL "com.github.actions.name"="Flatpak Builder" | ||
LABEL "com.github.actions.description"="Build your flatpak project" | ||
LABEL "com.github.actions.icon"="check" | ||
LABEL "com.github.actions.color"="blue" | ||
|
||
LABEL "repository"="https://github.com/bilelmoussaoui/flatpak-github-actions" | ||
LABEL "homepage"="http://github.com/actions" | ||
LABEL "maintainer"="Bilal Elmoussaoui<[email protected]>" | ||
|
||
ADD entrypoint.sh /entrypoint.sh | ||
ENTRYPOINT ["/entrypoint.sh"] |
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,3 @@ | ||
#!/bin/sh -l | ||
|
||
echo "I'm ready" |