Skip to content

Commit fd88fea

Browse files
committed
fix: attempt 10 to fix CI/CD. Should be the last, hopefully.
1 parent fff4fca commit fd88fea

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/deploy.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -48,13 +48,13 @@ jobs:
4848
- name: Detect package manager
4949
id: detect-package-manager
5050
run: |
51-
if ${{ steps.check_yarn.outputs.exists == 'true' }}; then
51+
if ${{ steps.check_yarn.outputs.files_exists == 'true' }}; then
5252
echo "manager=yarn" >> $GITHUB_OUTPUT
5353
echo "command=install" >> $GITHUB_OUTPUT
5454
echo "runner=yarn" >> $GITHUB_OUTPUT
5555
exit 0
5656
fi
57-
if ${{ steps.check_package.outputs.exists == 'true' }}; then
57+
if ${{ steps.check_package.outputs.files_exists == 'true' }}; then
5858
echo "manager=npm" >> $GITHUB_OUTPUT
5959
echo "command=ci" >> $GITHUB_OUTPUT
6060
echo "runner=npx --no-install" >> $GITHUB_OUTPUT

0 commit comments

Comments
 (0)