diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index 6645da1bf..66520cd70 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -159,54 +159,6 @@ jobs: GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }} GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }} - deployWeb: - name: Deploy Web to Production - runs-on: ubuntu-latest - needs: [validateDBSchema, backendTests, frontendTests] - environment: production - - if: github.ref_name == 'main' - - steps: - - name: Checkout repository - uses: actions/checkout@v6 - - - name: Setup CI - uses: ./.github/composite/setup-ci - with: - GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }} - GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }} - - - name: Set up pnpm - uses: pnpm/action-setup@v5 - with: - version: 10.24.0 - cache: true - cache_dependency_path: js/pnpm-lock.yaml - package_json_file: js/package.json - - - name: Set up OpenJDK 25 - uses: actions/setup-java@v4 - with: - distribution: "temurin" - java-version: "25" - - - name: Cache Maven packages - uses: actions/cache@v5 - with: - path: | - ~/.m2 - ~/repository - key: ${{ github.job }}-${{ hashFiles('**/pom.xml') }} - - - name: Expose GitHub Runtime - uses: crazy-max/ghaction-github-runtime@v3 - - - name: Deploy Web Service - uses: ./.github/composite/deploy-web - with: - ENVIRONMENT: production - deployStandupBot: name: Deploy Standup Bot to Production runs-on: ubuntu-latest