We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c71c178 commit bdb7c21Copy full SHA for bdb7c21
.github/workflows/deploy.yml
@@ -226,6 +226,11 @@ jobs:
226
runs-on: ubuntu-24.04
227
needs: [deploy-be]
228
steps:
229
+ - name: Get service githash
230
+ id: git
231
+ run: |
232
+ hash=$(git rev-list -1 HEAD -- backend)
233
+ echo "githash=$hash" >> $GITHUB_OUTPUT
234
- name: Wait stable deployment
235
run: |
236
while true; do
@@ -369,6 +374,11 @@ jobs:
369
374
370
375
needs: [deploy-fe]
371
376
377
378
379
380
+ hash=$(git rev-list -1 HEAD -- frontend)
381
372
382
373
383
384
0 commit comments