Skip to content

(PATCH) github action for updating app version #13

(PATCH) github action for updating app version

(PATCH) github action for updating app version #13

name: Release installer package
on: push
jobs:
release-installer-package:
runs-on: ubuntu-latest
steps:
- name: Clone the repo
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Update Application Version
id: update-version
uses: paulhatch/semantic-version@v5.3.0
with:
tag_prefix: "v"
major_pattern: "(MAJOR)"
minor_pattern: "(MINOR)"
version_format: "${major}.${minor}.${patch}"
bump_each_commit: true
bump_each_commit_patch_pattern: "(PATCH)"
debug: true
- name: Create release folder
run: |
echo "${{ steps.update-version.outputs.version }}"
pip install "setuptools-git-versioning>=2.0,<3"
setuptools-git-versioning
mkdir kotaemon-app
setuptools-git-versioning > kotaemon-app/VERSION
cp LICENSE.txt kotaemon-app/
cp flowsettings.py kotaemon-app/
cp 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