Skip to content

Commit

Permalink
fixed more errors
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmedbham committed Apr 14, 2024
1 parent 5971074 commit 8ed5f14
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/reusable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,14 @@ on:
jobs:
reusable-job:
runs-on: ubuntu-latest
outputs:
current-time: steps.time.outputs.current-time
steps:
- name: Echo greeting
run: echo "Hello ${{ inputs.who-to-greet }}"
run: echo "Hello ${{ github.events.inputs.who-to-greet }}"
- name: Set current time
id: time
run: |
id: time
run: |
echo "::set-output name=current-time::$(date)"
outputs:
current-time: steps.time.outputs.current-time

0 comments on commit 8ed5f14

Please sign in to comment.