Skip to content

Commit

Permalink
Replace deprecated set-output command
Browse files Browse the repository at this point in the history
  • Loading branch information
netanelrabinowitz committed Oct 4, 2023
1 parent d290105 commit 2446c24
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
cd ./packages
folders=$(tree -J -d -L 1 | jq -c '.[0].contents | map(.name)')
echo $folders
echo "::set-output name=folders::$folders"
echo "folders=$folders" >> $GITHUB_OUTPUT
build:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
cd ./packages
folders=$(tree -J -d -L 1 | jq -c '.[0].contents | map(.name)')
echo $folders
echo "::set-output name=folders::$folders"
echo "folders=$folders" >> $GITHUB_OUTPUT
publish:
Expand Down

0 comments on commit 2446c24

Please sign in to comment.