diff --git a/webUI/.github/workflows/release.yml b/webUI/.github/workflows/release.yml index d1172fe..aa2381c 100644 --- a/webUI/.github/workflows/release.yml +++ b/webUI/.github/workflows/release.yml @@ -22,6 +22,11 @@ jobs: - name: Build run: npm run build-only + - name: Zip dist folder + run: | + cd public_html/ui + zip -r ../../webUI.zip . + - name: Create Release id: create_release uses: actions/create-release@v1 @@ -39,6 +44,6 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: upload_url: ${{ steps.create_release.outputs.upload_url }} - asset_path: ./dist - asset_name: dist.zip + asset_path: ./webUI.zip + asset_name: webUI.zip asset_content_type: application/zip \ No newline at end of file