Skip to content

Commit

Permalink
fix: remove deprecated output from ci/cd step
Browse files Browse the repository at this point in the history
  • Loading branch information
Nr18 committed Mar 6, 2024
1 parent 432978f commit 4e031f0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,9 @@ jobs:
id: has-dist-folder
run: |-
if [ -d ./dist/ ]; then
echo "::set-output name=folder_exists::true"
echo "folder_exists=true" >> $GITHUB_OUTPUT
else
echo "::set-output name=folder_exists::false"
echo "folder_exists=false" >> $GITHUB_OUTPUT
fi
- name: Publish package distributions to PyPI
if: steps.has-dist-folder.outputs.folder_exists == 'true'
Expand Down

0 comments on commit 4e031f0

Please sign in to comment.