Skip to content

Commit e7bbca0

Browse files
authored
Feature/add workflow output
1 parent 7e8cea0 commit e7bbca0

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

.github/workflows/create-image.yml

+3
Original file line numberDiff line numberDiff line change
@@ -96,5 +96,8 @@ jobs:
9696
get_students_url:
9797
runs-on: ubuntu-latest
9898
needs: trigger_deployment
99+
steps:
100+
- name: echo_success
101+
runs: echo "Successfully retrieved repo_url ${{ needs.trigger_deployment.outputs.student_url }}"
99102
outputs:
100103
student_url: ${{ needs.trigger_deployment.outputs.student_url }}

.github/workflows/update-image.yml

+3
Original file line numberDiff line numberDiff line change
@@ -105,5 +105,8 @@ jobs:
105105
get_students_url:
106106
runs-on: ubuntu-latest
107107
needs: trigger_deployment
108+
steps:
109+
- name: echo_success
110+
runs: echo "Successfully retrieved repo_url ${{ needs.trigger_deployment.outputs.student_url }}"
108111
outputs:
109112
student_url: ${{ needs.trigger_deployment.outputs.student_url }}

0 commit comments

Comments
 (0)