Last active
May 19, 2022 12:10
-
-
Save twyle/f19f661396a5f404aaed486d8511a497 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: [push] | |
jobs: | |
hello_world_job: | |
runs-on: ubuntu-latest | |
name: A job to say hello | |
steps: | |
- name: Hello world action step | |
id: hello | |
uses: twyle/[email protected] | |
with: | |
who-to-greet: 'Lyle Okoth' | |
# Use the output from the `hello` step | |
- name: Get the output time | |
run: echo "The time was ${{ steps.hello.outputs.time }}" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment