custom action #1
This file contains 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: | |
my-job: | |
runs-on: ubuntu-latest | |
name: A job to say hello | |
steps: | |
- name: Hello world action step | |
id: hello | |
uses: omenking/[email protected] | |
with: | |
name: 'Brown' | |
# Use the output from the `hello` step | |
- name: Get the Output | |
run: echo "The time was ${{ steps.hello.outputs.greeting }}" |