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 11, 2023
1 parent fc24b26 commit 4bfc5ba
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 @@ -178,7 +178,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 4bfc5ba

Please sign in to comment.