Skip to content

Commit 4df0e10

Browse files
committed
fix(ci): dify plugin binary included in difypkg
1 parent f93734a commit 4df0e10

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/release.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,13 +72,13 @@ jobs:
7272
echo "Asset not found in the latest release. Exiting."
7373
exit 1
7474
fi
75-
curl -L -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" -o dify "${{ steps.latest_release.outputs.download_url }}"
76-
chmod +x dify
75+
curl -L -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" -o ../dify "${{ steps.latest_release.outputs.download_url }}"
76+
chmod +x ../dify
7777
7878
- name: Run Dify Plugin Package
7979
run: |
8080
PLUGIN_DIR=$(pwd)
81-
./dify plugin package $PLUGIN_DIR
81+
../dify plugin package $PLUGIN_DIR
8282
8383
- name: Set package filename
8484
id: set_package_file

0 commit comments

Comments
 (0)