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:
4
.github/workflows/pipeline.yml
vendored
4
.github/workflows/pipeline.yml
vendored
@@ -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 }}
|
||||
|
||||
Reference in New Issue
Block a user