initial commit

This commit is contained in:
“ibrahim0814”
2019-07-30 18:21:05 -07:00
commit 4779151e5f
4 changed files with 28 additions and 0 deletions

3
.github/main.workflow vendored Normal file
View File

@@ -0,0 +1,3 @@
action "action a" {
uses = "./codecov-action/"
}

18
codecov-action/Dockerfile Normal file
View File

@@ -0,0 +1,18 @@
FROM debian:9.5-slim
LABEL "com.github.actions.name"="Codecov"
LABEL "com.github.actions.description"="Upload coverage reports to codecov"
LABEL "com.github.actions.icon"="umbrella"
LABEL "com.github.actions.color"="red"
LABEL "repository"="https://github.com/ibrahim0814/github-actions-test.git"
LABEL "homepage"="https://www.codecov.io"
LABEL "maintainer"="Ib <ibrahim@codecov.io>"
RUN apt-get install bash-completion
RUN apt-get install git-all
RUN apt-get install curl
ADD entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]

7
codecov-action/README.md Normal file
View File

@@ -0,0 +1,7 @@
## Things to put in readme
* A detailed description of what the action does.
* Environment variables the action uses.
* Secrets the action uses. Production secrets should not be stored in the API during the limited public beta period.
* Required arguments.
* Optional arguments.

View File