Skip to content

Commit 5ea5810

Browse files
committed
update action
1 parent 3260f36 commit 5ea5810

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/createRelease.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,10 @@ jobs:
3131
run: |
3232
yarn build
3333
yarn next export
34-
- name: Zip Export
34+
- name: Rename and zip Export
3535
run: |
36-
tar czvf out.tar.gz out
36+
mv out chatbot-ui
37+
tar czvf chatbot-ui.tar.gz chatbot-ui
3738
- name: Create Release
3839
id: create_release
3940
uses: actions/create-release@v1
@@ -48,6 +49,6 @@ jobs:
4849
GITHUB_TOKEN: ${{ secrets.ACTION_TOKEN }}
4950
with:
5051
upload_url: ${{ steps.create_release.outputs.upload_url }}
51-
asset_path: ./out.tar.gz
52-
asset_name: out.tar.gz
52+
asset_path: ./chatbot-ui.tar.gz
53+
asset_name: chatbot-ui.tar.gz
5354
asset_content_type: application/zip

0 commit comments

Comments
 (0)