63 lines
2.4 KiB
YAML
63 lines
2.4 KiB
YAML
name: Auto Bump and Release
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
auto-bump-and-release:
|
|
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: anothrNick/github-tag-action@v1
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
WITH_V: true
|
|
DEFAULT_BUMP: patch
|
|
MAJOR_STRING_TOKEN: "bump:major"
|
|
MINOR_STRING_TOKEN: "bump:minor"
|
|
PATCH_STRING_TOKEN: "bump:patch"
|
|
- name: Create release for ${{ steps.update-version.outputs.new_tag }}
|
|
# need to repeat this if statement because Github Action doesn't support early
|
|
# stopping for steps
|
|
if: ${{ steps.update-version.outputs.new_tag != steps.update-version.outputs.old_tag }}
|
|
run: |
|
|
echo Create release folder
|
|
mkdir kotaemon-app
|
|
echo ${{ steps.update-version.outputs.new_tag }} > kotaemon-app/VERSION
|
|
cp LICENSE.txt kotaemon-app/
|
|
cp flowsettings.py kotaemon-app/
|
|
cp app.py kotaemon-app/
|
|
cp .env kotaemon-app/
|
|
cp -r scripts kotaemon-app/
|
|
mkdir -p kotaemon-app/libs/ktem/ktem/
|
|
cp -r libs/ktem/ktem/assets kotaemon-app/libs/ktem/ktem/
|
|
|
|
tree kotaemon-app
|
|
zip -r kotaemon-app.zip kotaemon-app
|
|
- name: Release ${{ steps.update-version.outputs.new_tag }}
|
|
if: ${{ steps.update-version.outputs.new_tag != steps.update-version.outputs.old_tag }}
|
|
uses: softprops/action-gh-release@v2
|
|
with:
|
|
files: kotaemon-app.zip
|
|
fail_on_unmatched_files: true
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
generate_release_notes: true
|
|
tag_name: ${{ steps.update-version.outputs.new_tag }}
|
|
make_latest: true
|
|
- name: Setup latest branch locally without switching current branch
|
|
if: ${{ steps.update-version.outputs.new_tag != steps.update-version.outputs.old_tag }}
|
|
run: git fetch origin latest:latest
|
|
- name: Update latest branch
|
|
if: ${{ steps.update-version.outputs.new_tag != steps.update-version.outputs.old_tag }}
|
|
run: |
|
|
git branch -f latest tags/${{ steps.update-version.outputs.new_tag }}
|
|
git checkout latest
|
|
git push -f -u origin latest
|