Skip to content

Commit

Permalink
Feature/add workflow output
Browse files Browse the repository at this point in the history
  • Loading branch information
MennaTullahTaha authored May 20, 2024
1 parent 7e8cea0 commit e7bbca0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/create-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,5 +96,8 @@ jobs:
get_students_url:
runs-on: ubuntu-latest
needs: trigger_deployment
steps:
- name: echo_success
runs: echo "Successfully retrieved repo_url ${{ needs.trigger_deployment.outputs.student_url }}"
outputs:
student_url: ${{ needs.trigger_deployment.outputs.student_url }}
3 changes: 3 additions & 0 deletions .github/workflows/update-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,5 +105,8 @@ jobs:
get_students_url:
runs-on: ubuntu-latest
needs: trigger_deployment
steps:
- name: echo_success
runs: echo "Successfully retrieved repo_url ${{ needs.trigger_deployment.outputs.student_url }}"
outputs:
student_url: ${{ needs.trigger_deployment.outputs.student_url }}

0 comments on commit e7bbca0

Please sign in to comment.