From 51b500f5bc0628822212b1adb6943241c3bcb263 Mon Sep 17 00:00:00 2001 From: Bilal Elmoussaoui Date: Mon, 30 Sep 2019 23:27:38 +0200 Subject: [PATCH] Prepare the basics --- .github/FUNDING.yml | 3 +++ Dockerfile | 13 +++++++++++++ entrypoint.sh | 3 +++ 3 files changed, 19 insertions(+) create mode 100644 .github/FUNDING.yml create mode 100644 Dockerfile create mode 100755 entrypoint.sh diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml new file mode 100644 index 00000000..6f8ca348 --- /dev/null +++ b/.github/FUNDING.yml @@ -0,0 +1,3 @@ +github: bilelmoussaoui +patreon: bilelmoussaoui +custom: https://www.paypal.me/BilalELMoussaoui diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 00000000..2475c267 --- /dev/null +++ b/Dockerfile @@ -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" + +ADD entrypoint.sh /entrypoint.sh +ENTRYPOINT ["/entrypoint.sh"] \ No newline at end of file diff --git a/entrypoint.sh b/entrypoint.sh new file mode 100755 index 00000000..4b0a7146 --- /dev/null +++ b/entrypoint.sh @@ -0,0 +1,3 @@ +#!/bin/sh -l + +echo "I'm ready" \ No newline at end of file