Skip to content

Commit dd84150

Browse files
committed
Fix
1 parent 3ccb07d commit dd84150

File tree

4 files changed

+15
-1
lines changed

4 files changed

+15
-1
lines changed

.DS_Store

0 Bytes
Binary file not shown.

.github/main.workflow

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ workflow "test-runner" {
44
}
55

66
action "test-pipeline-runner" {
7-
uses = "./"
7+
uses = "./codefresh-github-action"
88
args = ["arg1", "arg2"]
99
}

codefresh-github-action/Dockerfile

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
FROM alpine
2+
3+
LABEL "com.github.actions.name"="test-pipeline-runner"
4+
LABEL "com.github.actions.description"="allow run custom codefresh pipeline"
5+
LABEL "com.github.actions.icon"="mic"
6+
LABEL "com.github.actions.color"="purple"
7+
8+
LABEL "repository"="https://github.com/codefresh-io/codefresh-github-action-test"
9+
LABEL "homepage"="https://github.com/codefresh-io/codefresh-github-action-test"
10+
LABEL "maintainer"="Octocat <denys@codefresh.io>"
11+
12+
ADD entrypoint.sh /entrypoint.sh
13+
14+
ENTRYPOINT ["/entrypoint.sh"]
File renamed without changes.

0 commit comments

Comments
 (0)