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 fd0c182 commit ec32825Copy full SHA for ec32825
1 file changed
.github/workflows/auto_release.yml
@@ -48,8 +48,10 @@ jobs:
48
EOF
49
50
echo "Uploading dist.zip to R2 bucket: $R2_BUCKET_NAME/$R2_OBJECT_NAME"
51
- rclone copy dashboard/dist.zip r2:$R2_BUCKET_NAME/$R2_OBJECT_NAME --progress
52
- rclone copy dashboard/dist.zip r2:$R2_BUCKET_NAME/astrbot-webui-${VERSION_TAG}.zip --progress
+ mv dashboard/dist.zip dashboard/$R2_OBJECT_NAME
+ rclone copy dashboard/$R2_OBJECT_NAME r2:$R2_BUCKET_NAME --progress
53
+ mv dashboard/$R2_OBJECT_NAME dashboard/astrbot-webui-${VERSION_TAG}.zip
54
+ rclone copy dashboard/astrbot-webui-${VERSION_TAG}.zip r2:$R2_BUCKET_NAME --progress
55
56
- name: Fetch Changelog
57
run: |
0 commit comments