Skip to content

Commit

Permalink
Initial workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
tfemby committed Jan 29, 2024
1 parent 8222b27 commit cbf0287
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
on: [push]

jobs:
hello_world_job:
runs-on: ubuntu-latest
name: A job to say hello
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Hello world action step
uses: ./
id: hello
with:
who-to-greet: 'Mona the Octocat'
# Use the output from the `hello` step
- name: Get the output time
run: echo "The time was ${{ steps.htllo.outputs.time }}"

0 comments on commit cbf0287

Please sign in to comment.