From 1f03606468f89b7929dc0555131f937430737f5e Mon Sep 17 00:00:00 2001 From: Otto the Minion Date: Mon, 27 Apr 2026 20:59:09 -0400 Subject: [PATCH] ci: simplify dev pipeline to build-test only (remove deploy/notify stubs) --- .gitea/workflows/dev.yml | 36 ------------------------------------ 1 file changed, 36 deletions(-) diff --git a/.gitea/workflows/dev.yml b/.gitea/workflows/dev.yml index d4d3e71..5daf743 100644 --- a/.gitea/workflows/dev.yml +++ b/.gitea/workflows/dev.yml @@ -42,39 +42,3 @@ jobs: - name: Build frontend run: npm run build working-directory: ./frontend - - deploy-dev: - needs: build-test - if: gitea.event_name == 'push' - runs-on: ubuntu-latest - - steps: - - name: Deploy dev - run: | - echo "${{ secrets.DEV_DEPLOY_SSH_KEY }}" > /tmp/dev_key - chmod 600 /tmp/dev_key - ssh -i /tmp/dev_key -o StrictHostKeyChecking=no \ - ${{ secrets.DEV_DEPLOY_USER }}@${{ secrets.DEV_DEPLOY_HOST }} \ - "${{ secrets.DEV_DEPLOY_PATH }}/deploy.sh" - - notify-success: - needs: [build-test, deploy-dev] - if: success() && gitea.event_name == 'push' - runs-on: ubuntu-latest - steps: - - name: Notify Slack success - run: | - curl -X POST -H 'Content-type: application/json' \ - --data "{\"text\":\"✅ Extrudex dev deployed successfully from dev branch.\"}" \ - "${{ secrets.SLACK_WEBHOOK_URL }}" - - notify-failure: - needs: [build-test, deploy-dev] - if: failure() - runs-on: ubuntu-latest - steps: - - name: Notify Slack failure - run: | - curl -X POST -H 'Content-type: application/json' \ - --data "{\"text\":\"🚨 Extrudex dev pipeline failed. Check Gitea Actions for details.\"}" \ - "${{ secrets.SLACK_WEBHOOK_URL }}"