RAPTOR v18.4: Исправлена отчетность, активированы выходные

This commit is contained in:
root
2026-04-18 23:26:45 +03:00
commit ef0958239e
312 changed files with 54247 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
name: Bump version
on:
push:
branches: [main]
paths:
- "tinkoff/**"
- "!tinkoff/invest/__init__.py"
- "!tinkoff/invest/constants.py"
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
token: ${{ secrets.BOT_ACCESS_TOKEN }}
- name: Git user
run: |
git config --local user.name 'github-actions[bot]'
git config --local user.email 'github-actions[bot]@users.noreply.github.com'
- name: Install python dependencies
run: make install-poetry install-bump
- name: Bump version
run: make bump-version v=$(make next-version)
- name: Push
run: |
git push
git push --tags