7 Commits
v1 ... v2

Author SHA1 Message Date
Lucas Costi
0b406c0e14 Merge pull request #13 from actions/workflow-command-replacement
Update output to use new environment file method
2022-10-17 10:57:12 +10:00
Lucas Costi
8579a20b8f Update README.md 2022-10-14 14:13:12 +10:00
Lucas Costi
778deccca4 Update output to use new environment file method 2022-10-14 14:06:01 +10:00
Lucas Costi
b136eb8894 Merge pull request #3 from lucascosti/patch-1
Fix typo in output description
2019-09-25 10:59:48 +10:00
Lucas Costi
8d80963566 Merge pull request #1 from koppor/patch-1
Fix link to help
2019-09-25 10:59:00 +10:00
Lucas Costi
fc354d7d3e Fix typo in output description 2019-09-23 15:28:55 +10:00
Oliver Kopp
2f7c2dc976 Fix link to help 2019-09-12 23:24:50 +02:00
3 changed files with 4 additions and 4 deletions

View File

@@ -1,6 +1,6 @@
# Hello world docker action
This action prints "Hello World" to the log or "Hello" + the name of a person to greet. To learn how this action was built, see "[Creating a Docker action](https://help.github.com/en/articles/creating-a-docker-action)" in the GitHub Help documentation.
This action prints "Hello World" to the log or "Hello" + the name of a person to greet. To learn how this action was built, see "[Creating a Docker container action](https://docs.github.com/en/actions/creating-actions/creating-a-docker-container-action)" in the GitHub Docs.
## Inputs
@@ -17,7 +17,7 @@ The time we greeted you.
## Example usage
```yaml
uses: actions/hello-world-docker-action@master
uses: actions/hello-world-docker-action@main
with:
who-to-greet: 'Mona the Octocat'
```

View File

@@ -7,7 +7,7 @@ inputs:
default: 'World'
outputs:
time: # id of output
description: 'The time we we greeted you'
description: 'The time we greeted you'
runs:
using: 'docker'
image: 'Dockerfile'

View File

@@ -2,4 +2,4 @@
echo "Hello $1"
time=$(date)
echo ::set-output name=time::$time
echo "time=$time" >> $GITHUB_OUTPUT