This action prints "Hello World" or "Hello" + the name of a person to greet to the log.
Required The name of the person to greet. Default "World"
.
The time we greeted you.
uses: actions/hello-world-docker-action@v1 with: who-to-greet: 'Wasim'
Locally, check that we can build and run the Docker container.
docker build -t echo-container .
docker run echo-container world
and we should see:
Hello world
::set-output name=time::Thu Sep 26 08:15:49 UTC 2019