We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f93734a commit 4df0e10Copy full SHA for 4df0e10
.github/workflows/release.yaml
@@ -72,13 +72,13 @@ jobs:
72
echo "Asset not found in the latest release. Exiting."
73
exit 1
74
fi
75
- curl -L -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" -o dify "${{ steps.latest_release.outputs.download_url }}"
76
- chmod +x dify
+ curl -L -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" -o ../dify "${{ steps.latest_release.outputs.download_url }}"
+ chmod +x ../dify
77
78
- name: Run Dify Plugin Package
79
run: |
80
PLUGIN_DIR=$(pwd)
81
- ./dify plugin package $PLUGIN_DIR
+ ../dify plugin package $PLUGIN_DIR
82
83
- name: Set package filename
84
id: set_package_file
0 commit comments