Skip to content

Commit

Permalink
workflows: deprecate ::set-output command
Browse files Browse the repository at this point in the history
  • Loading branch information
sayomaki committed Oct 7, 2023
1 parent 85b87c2 commit 1b60102
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-bottles.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,10 +114,10 @@ jobs:
cd bottles
count=$(ls *.json | wc -l | xargs echo -n)
echo "$count bottles"
echo "::set-output name=count::$count"
echo "count=$count" >> $GITHUB_OUTPUT
failures=$(ls failed/*.json | wc -l | xargs echo -n)
echo "$failures failed bottles"
echo "::set-output name=failures::$failures"
echo "failures=$failures" >> $GITHUB_OUTPUT
- name: Upload failed bottles
if: always() && steps.bottles.outputs.failures > 0
Expand Down

0 comments on commit 1b60102

Please sign in to comment.