https://github.com/arturwincenciak/hello-world-docker-action
This guide shows you the minimal steps required to build a Docker container action
https://github.com/arturwincenciak/hello-world-docker-action
docker-actions github-actions hello-world
Last synced: 7 months ago
JSON representation
This guide shows you the minimal steps required to build a Docker container action
- Host: GitHub
- URL: https://github.com/arturwincenciak/hello-world-docker-action
- Owner: ArturWincenciak
- License: mit
- Created: 2023-01-02T23:49:08.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-01-04T10:45:52.000Z (almost 3 years ago)
- Last Synced: 2025-03-20T19:14:10.537Z (7 months ago)
- Topics: docker-actions, github-actions, hello-world
- Language: Dockerfile
- Homepage:
- Size: 12.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Hello world docker action
This action prints "Hello World" or "Hello" + the name of a person to greet to the log.
## Inputs
## `who-to-greet`
**Required**.
The name of the person to greet.
Default: `"World"`.## `some_second_arg`
Not required.
Second argument.
Default: `"Default value of second argument"`.## Outputs
## `time`
The time we greeted you.
## Example usage
uses: actions/hello-world-docker-action@v2
with:
who-to-greet: 'Mona the Octocat'