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 46f9c7a commit 8de3e11Copy full SHA for 8de3e11
.github/workflows/initiator.yaml
@@ -16,6 +16,7 @@ env:
16
TI_TEST_OFFLINE_CACHE: ${{ github.event.schedule == '0 18 * * *' && '1' || '' }}
17
CI_IMAGE_VERSION: '202304251731'
18
TI_USE_GIT_CACHE: ${{ vars.TI_USE_GIT_CACHE }}
19
+ REDIS_HOST: 172.16.5.1
20
21
jobs:
22
show_environ:
@@ -60,3 +61,14 @@ jobs:
60
61
secrets:
62
BOT_MINIO_ACCESS_KEY: ${{ secrets.BOT_MINIO_ACCESS_KEY }}
63
BOT_MINIO_SECRET_KEY: ${{ secrets.BOT_MINIO_SECRET_KEY }}
64
+
65
+ save_build_metadata:
66
+ name: Save Build Metadata
67
+ runs-on: [self-hosted, Linux]
68
+ needs: [preparation, build]
69
+ steps:
70
+ - name: Saving Metadata
71
+ id: gather
72
+ run: >-
73
+ redis-cli -h $REDIS_HOST --raw
74
+ set "latest-build-id:$GITHUB_REPOSITORY:$GITHUB_REF" ${{ needs.preparation.outputs.build_id }}
0 commit comments