Skip to content

Commit

Permalink
Add access attempt from a dependent job
Browse files Browse the repository at this point in the history
  • Loading branch information
liamhuber committed May 24, 2024
1 parent 611c66b commit 8ae28e5
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/experiment-with-ci-syntax.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,13 @@ jobs:
- name: Echo latest release tag
run: |
echo "Latest release tag: ${{ steps.get-release.outputs.latest_release_tag }}"
echo "Latest release tag: ${{ steps.get-release.outputs.result }}"
access-latest-release:
needs: get-latest-release
runs-on: ubuntu-latest
steps:
- name: Echo latest release tag from previous job
run:
echo "Latest release tag from previous job: ${{ needs.get-latest-release.outputs.latest_release_tag }}"

0 comments on commit 8ae28e5

Please sign in to comment.