diff --git a/.github/workflows/create-image.yml b/.github/workflows/create-image.yml index 11c4fe4..840cc36 100644 --- a/.github/workflows/create-image.yml +++ b/.github/workflows/create-image.yml @@ -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 }} diff --git a/.github/workflows/update-image.yml b/.github/workflows/update-image.yml index 66bccaf..921a171 100644 --- a/.github/workflows/update-image.yml +++ b/.github/workflows/update-image.yml @@ -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 }}