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 3260f36 commit 5ea5810Copy full SHA for 5ea5810
.github/workflows/createRelease.yml
@@ -31,9 +31,10 @@ jobs:
31
run: |
32
yarn build
33
yarn next export
34
- - name: Zip Export
+ - name: Rename and zip Export
35
36
- tar czvf out.tar.gz out
+ mv out chatbot-ui
37
+ tar czvf chatbot-ui.tar.gz chatbot-ui
38
- name: Create Release
39
id: create_release
40
uses: actions/create-release@v1
@@ -48,6 +49,6 @@ jobs:
48
49
GITHUB_TOKEN: ${{ secrets.ACTION_TOKEN }}
50
with:
51
upload_url: ${{ steps.create_release.outputs.upload_url }}
- asset_path: ./out.tar.gz
52
- asset_name: out.tar.gz
+ asset_path: ./chatbot-ui.tar.gz
53
+ asset_name: chatbot-ui.tar.gz
54
asset_content_type: application/zip
0 commit comments