Skip to content

Commit

Permalink
build: use $GITHUB_OUTPUT for environment list
Browse files Browse the repository at this point in the history
  • Loading branch information
dougwilson committed Dec 6, 2022
1 parent 2ec2c6e commit 5bc8370
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ jobs:
echo "node@$(node -v)"
echo "npm@$(npm -v)"
npm -s ls ||:
(npm -s ls --depth=0 ||:) | awk -F'[ @]' 'NR>1 && $2 { print "::set-output name=" $2 "::" $3 }'
(npm -s ls --depth=0 ||:) | awk -F'[ @]' 'NR>1 && $2 { print $2 "=" $3 }' >> "$GITHUB_OUTPUT"
- name: Run tests
shell: bash
Expand Down

0 comments on commit 5bc8370

Please sign in to comment.