We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c33db5 commit 26d5d67Copy full SHA for 26d5d67
1 file changed
.github/workflows/ci-cd.yml
@@ -158,6 +158,23 @@ jobs:
158
with:
159
GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }}
160
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 }}
178
179
deployStandupBot:
180
name: Deploy Standup Bot to Production
0 commit comments