File tree Expand file tree Collapse file tree 1 file changed +9
-4
lines changed
Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -48,10 +48,15 @@ jobs:
4848 echo "Plugin author: $AUTHOR"
4949 echo "author=$AUTHOR" >> $GITHUB_OUTPUT
5050
51- # GitHub organization for repository operations
52- GITHUB_USER="tdcktz "
51+ # GitHub username for repository operations
52+ GITHUB_USER="JAVA-LW "
5353 echo "GitHub user: $GITHUB_USER"
5454 echo "github_user=$GITHUB_USER" >> $GITHUB_OUTPUT
55+
56+ # Organization name for plugin directory
57+ ORG_NAME="tdcktz"
58+ echo "Organization name: $ORG_NAME"
59+ echo "org_name=$ORG_NAME" >> $GITHUB_OUTPUT
5560
5661 - name : Package Plugin
5762 id : package
9499 ls -la
95100
96101 # Move the packaged file to the target directory using variables
97- mkdir -p dify-plugins/${{ steps.get_basic_info.outputs.github_user }}/${{ steps.get_basic_info.outputs.plugin_name }}
98- mv "$PACKAGE_NAME" dify-plugins/${{ steps.get_basic_info.outputs.github_user }}/${{ steps.get_basic_info.outputs.plugin_name }}/
102+ mkdir -p dify-plugins/${{ steps.get_basic_info.outputs.org_name }}/${{ steps.get_basic_info.outputs.plugin_name }}
103+ mv "$PACKAGE_NAME" dify-plugins/${{ steps.get_basic_info.outputs.org_name }}/${{ steps.get_basic_info.outputs.plugin_name }}/
99104
100105 # Enter the target repository directory
101106 cd dify-plugins
You can’t perform that action at this time.
0 commit comments