Skip to content

Commit 26d5d67

Browse files
898: Re-added build image step to ci-cd
1 parent 2c33db5 commit 26d5d67

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

.github/workflows/ci-cd.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -158,6 +158,23 @@ jobs:
158158
with:
159159
GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }}
160160
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
161+
162+
buildImage:
163+
name: Build Docker Image & Upload to Registry
164+
runs-on: ubuntu-latest
165+
needs: [validateDBSchema, backendTests, frontendTests]
166+
167+
if: github.ref_name == 'main'
168+
169+
steps:
170+
- name: Checkout repository
171+
uses: actions/checkout@v6
172+
173+
- name: Run workflow
174+
uses: ./.github/composite/build-image
175+
with:
176+
GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }}
177+
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
161178

162179
deployStandupBot:
163180
name: Deploy Standup Bot to Production

0 commit comments

Comments
 (0)