diff --git a/Dockerfile b/Dockerfile index d83e52b..bf576d6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,6 +5,13 @@ ENV LC_ALL C.UTF-8 ENV LANG en_US.UTF-8 ENV LANGUAGE en_US.UTF-8 +LABEL "com.github.actions.name"="Build & Deploy to GitHub Pages" +LABEL "com.github.actions.description"="Builds & deploys the project to GitHub Pages" +LABEL "com.github.actions.icon"="globe" +LABEL "com.github.actions.color"="green" + +LABEL "repository"="http://github.com/BryanSchuetz/jekyll-deploy-gh-pages" + ADD entrypoint.sh /entrypoint.sh diff --git a/build/Dockerfile b/build/Dockerfile index d83e52b..07c84c8 100644 --- a/build/Dockerfile +++ b/build/Dockerfile @@ -5,6 +5,13 @@ ENV LC_ALL C.UTF-8 ENV LANG en_US.UTF-8 ENV LANGUAGE en_US.UTF-8 +LABEL "com.github.actions.name"="Builds to GitHub Pages" +LABEL "com.github.actions.description"="Builds the project to GitHub Pages" +LABEL "com.github.actions.icon"="globe" +LABEL "com.github.actions.color"="green" + +LABEL "repository"="http://github.com/BryanSchuetz/jekyll-deploy-gh-pages/tree/master/build" + ADD entrypoint.sh /entrypoint.sh diff --git a/deploy/Dockerfile b/deploy/Dockerfile index dfd4bef..7f8fbaf 100644 --- a/deploy/Dockerfile +++ b/deploy/Dockerfile @@ -1,2 +1,9 @@ ENTRYPOINT ["/entrypoint.sh"] + +LABEL "com.github.actions.name"="Deploys to GitHub Pages" +LABEL "com.github.actions.description"="Deploys the project to GitHub Pages" +LABEL "com.github.actions.icon"="globe" +LABEL "com.github.actions.color"="green" + +LABEL "repository"="http://github.com/BryanSchuetz/jekyll-deploy-gh-pages/tree/master/deploy"