Skip to content

github action for creating release #4

github action for creating release

github action for creating release #4

name: Release installer package
on: push
jobs:
relase-installer-package:
runs-on: ubuntu-latest
steps:
- name: Clone the repo
uses: actions/checkout@v4
- name: Create release folder
run: |
mkdir kotaemon-app
echo ${{ github.sha }} > kotaemon-app/VERSION
cp LICENSE.txt kotaemon-app/
cp libs/ktem/flowsettings.py kotaemon-app/
cp libs/ktem/launch.py kotaemon-app/
cp -r scripts kotaemon-app/
zip -r kotaemon-app.zip kotaemon-app
- name: Show release folder
run: tree kotaemon-app
- name: Release
uses: softprops/action-gh-release@v2
with:
files: kotaemon-app.zip
name: test-release
draft: true
fail_on_unmatched_files: true