File tree Expand file tree Collapse file tree 4 files changed +55
-5
lines changed Expand file tree Collapse file tree 4 files changed +55
-5
lines changed Original file line number Diff line number Diff line change 1+ {
2+ "bump-patch-for-minor-pre-major" : true ,
3+ "separate-pull-requests" : true ,
4+ "sequential-calls" : true ,
5+ "include-component-in-tag" : true ,
6+ "skip-github-release" : false ,
7+ "packages" : {
8+ "integrations/agntcy-agp/agentic-apps" : {
9+ "package-name" : " agentic-apps" ,
10+ "release-type" : " simple"
11+ }
12+ }
13+ }
Original file line number Diff line number Diff line change 1+ {
2+ "integrations/agntcy-agp/agentic-apps" : " 0.0.1"
3+ }
Original file line number Diff line number Diff line change 11# SPDX-FileCopyrightText: Copyright (c) 2025 Cisco and/or its affiliates.
22# SPDX-License-Identifier: Apache-2.0
33
4- name : release
4+ name : release sample agentic application images
55
66on :
77 push :
88 tags :
9- - ' v[0-9]+.[0-9]+.[0-9]+'
9+ - ' agentic-apps- v[0-9]+.[0-9]+.[0-9]+'
1010
1111concurrency :
1212 group : ${{ github.workflow }}-${{ github.ref }}
1717 name : Prepare Build
1818 outputs :
1919 targets : ${{ steps.all-targets.outputs.targets }}
20- image-tag : ${{ steps.resolve.outputs.image_tag }}
20+ image-tag : ${{ steps.resolve.outputs.version }}
2121 runs-on : ubuntu-latest
2222 steps :
2323 - name : Checkout code
3434 - name : Container image
3535 id : resolve
3636 run : |
37- # Export vars
38- echo "image_tag=${GITHUB_REF#refs/*/}" >> $GITHUB_OUTPUT
37+ # strip gentic-apps- prefix from the tag
38+ _target=${GITHUB_REF_NAME#agentic-apps-}
39+
40+ # get version only
41+ version=${_target##*-v}
42+ echo version=${version} >> ${GITHUB_OUTPUT}
43+
44+ echo "Version: $version"
3945
4046 - name : List all targets
4147 id : all-targets
Original file line number Diff line number Diff line change 1+ # SPDX-FileCopyrightText: Copyright (c) 2025 Cisco and/or its affiliates.
2+ # SPDX-License-Identifier: Apache-2.0
3+
4+ ---
5+ name : ci release-please check
6+
7+ on :
8+ push :
9+ branches :
10+ - main
11+
12+ concurrency :
13+ group : ${{ github.workflow }}-${{ github.ref }}
14+ cancel-in-progress : ${{ github.event_name == 'pull_request' }}
15+
16+ jobs :
17+ release :
18+ runs-on : ubuntu-latest
19+ permissions :
20+ contents : write
21+ pull-requests : write
22+ steps :
23+ - uses : googleapis/release-please-action@v4
24+ id : release-please
25+ with :
26+ token : ${{ secrets.AGNTCY_BUILD_BOT_GH_TOKEN }}
27+ config-file : .github/release-config.json
28+ manifest-file : .github/release-manifest.json
You can’t perform that action at this time.
0 commit comments