dev #9

Merged
avm merged 100 commits from dev into main 2026-03-17 16:06:44 +03:00
Showing only changes of commit f68b4fbbf1 - Show all commits

View File

@@ -2,9 +2,9 @@ name: CI/CD Pipeline
on:
push:
branches: [ main, develop ]
branches: [ main, develop, dev ]
pull_request:
branches: [ main, develop ]
branches: [ main, develop, dev ]
env:
PYTHON_VERSION: "3.11"
@@ -105,7 +105,7 @@ jobs:
name: Push to Gitea Registry
runs-on: ubuntu-latest
needs: [build]
if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/develop'
if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/develop' || github.ref == 'refs/heads/dev'
steps:
- name: Checkout code