We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fff4fca commit fd88feaCopy full SHA for fd88fea
.github/workflows/deploy.yml
@@ -48,13 +48,13 @@ jobs:
48
- name: Detect package manager
49
id: detect-package-manager
50
run: |
51
- if ${{ steps.check_yarn.outputs.exists == 'true' }}; then
+ if ${{ steps.check_yarn.outputs.files_exists == 'true' }}; then
52
echo "manager=yarn" >> $GITHUB_OUTPUT
53
echo "command=install" >> $GITHUB_OUTPUT
54
echo "runner=yarn" >> $GITHUB_OUTPUT
55
exit 0
56
fi
57
- if ${{ steps.check_package.outputs.exists == 'true' }}; then
+ if ${{ steps.check_package.outputs.files_exists == 'true' }}; then
58
echo "manager=npm" >> $GITHUB_OUTPUT
59
echo "command=ci" >> $GITHUB_OUTPUT
60
echo "runner=npx --no-install" >> $GITHUB_OUTPUT
0 commit comments