Skip to content

Commit

Permalink
outer.yml: $GITHUB_OUTPUT (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxBlazer authored Sep 25, 2023
1 parent e51690d commit e98eaad
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/outer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,11 @@ jobs:
commit_message=$(git log --format='%s' -n 1)
commit_description=$(git log --format='%B' -n 1)
# TODO: deprecated
echo "::set-output name=commit-hash::$commit_hash"
echo "::set-output name=commit-author::$commit_author"
echo "::set-output name=commit-merger::$commit_merger"
echo "::set-output name=commit-message::$commit_message"
echo "::set-output name=commit-description::$commit_description"
echo "commit-hash=$commit_hash" >> "$GITHUB_OUTPUT"
echo "commit-author=$commit_author" >> "$GITHUB_OUTPUT"
echo "commit-merger=$commit_merger" >> "$GITHUB_OUTPUT"
echo "commit-message=$commit_message" >> "$GITHUB_OUTPUT"
echo "commit-description=$commit_description" >> "$GITHUB_OUTPUT"
# - name: Run nested workflow
# uses: ./.github/actions/inner
Expand Down

0 comments on commit e98eaad

Please sign in to comment.