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 962487a commit 5d43c49Copy full SHA for 5d43c49
.github/workflows/exportAndPushToNode.yml
@@ -40,9 +40,10 @@ jobs:
40
mv out dashboard
41
cd dashboard
42
mkdir chatbot-ui
43
- mv index.html ./chatbot-ui
44
- mv favicon.png ./chatbot-ui
45
- mv ../public/dashboard/index.html ./dashboard
+ mv index.html chatbot-ui
+ mv favicon.png chatbot-ui
+ cd ../
46
+ mv public/dashboard/index.html dashboard
47
tar czvf dashboard.tar.gz dashboard
48
49
- name: Create Release
@@ -60,6 +61,6 @@ jobs:
60
61
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
62
with:
63
upload_url: ${{ steps.create_release.outputs.upload_url }}
- asset_path: ./dashboard.tar.gz
64
+ asset_path: dashboard.tar.gz
65
asset_name: dashboard.tar.gz
66
asset_content_type: application/zip
0 commit comments