mirror of
https://github.com/codecov/codecov-action.git
synced 2025-12-23 20:27:02 +08:00
initial commit
This commit is contained in:
3
.github/main.workflow
vendored
Normal file
3
.github/main.workflow
vendored
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
action "action a" {
|
||||||
|
uses = "./codecov-action/"
|
||||||
|
}
|
||||||
18
codecov-action/Dockerfile
Normal file
18
codecov-action/Dockerfile
Normal 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
7
codecov-action/README.md
Normal 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.
|
||||||
0
codecov-action/entrypoint.sh
Normal file
0
codecov-action/entrypoint.sh
Normal file
Reference in New Issue
Block a user