chore: remove CI and deployment workflows to streamline processes

- Deleted outdated CI workflow file to simplify the continuous integration process.
- Removed deployment workflow file to eliminate redundancy and focus on a more efficient deployment strategy.
This commit is contained in:
2026-01-25 15:46:58 +03:00
parent 153a7d4807
commit 5a0c2d6942
3 changed files with 1 additions and 229 deletions

View File

@@ -10,8 +10,6 @@ jobs:
test:
runs-on: ubuntu-latest
name: Test
outputs:
status: ${{ job.status }}
steps:
- name: Checkout code
@@ -69,7 +67,7 @@ jobs:
runs-on: ubuntu-latest
name: Deploy
needs: test
if: needs.test.outputs.status == 'success' && (github.ref == 'refs/heads/main' || github.event_name == 'pull_request')
if: success() && github.ref == 'refs/heads/main'
environment:
name: production
url: https://${{ vars.SERVER_HOST || secrets.SERVER_HOST }}