Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 0 additions & 48 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading