Skip to content

Commit

Permalink
create foo workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
nik-webdevelop authored May 23, 2024
1 parent c13ce5e commit 1acad45
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/foo.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: foo

on: [push, workflow-dispatch]

jobs:
first:
name: first-job-name
runs-on: ubuntu-latest
steps:
- name: create hello message
id: hello
uses: omenking/[email protected]
with:
name: 'Nemo'
- name: print hello message
run: echo '${{ steps.hello.outputs.greeting }}'

0 comments on commit 1acad45

Please sign in to comment.