blob: 1f9883e6507f90ec45a658bc8c32e3a2732600ab [file] [log] [blame]
FROM alpine
LABEL "name"="github-push"
LABEL "maintainer"="Adam Dobrawy <git+push@jawnosc.tk>"
LABEL "version"="0.0.1"
LABEL "com.github.actions.name"="Git push for GitHub Actions"
LABEL "com.github.actions.description"="Runs 'git push' to GitHub in an Action"
LABEL "com.github.actions.icon"="upload-cloud"
LABEL "com.github.actions.color"="green"
COPY README.md LICENSE start.sh /
RUN apk add --no-cache git
CMD ["/start.sh"]