Skip to content

Commit 42a0a91

Browse files
authored
ci: Tag api module on release (#335)
1 parent d75e905 commit 42a0a91

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/release-please.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,14 @@ jobs:
2727
- uses: actions/checkout@v4
2828
if: ${{ steps.release-please.outputs.release_created }}
2929

30-
- name: tag common module
30+
- name: Tag common and api modules
3131
if: ${{ steps.release-please.outputs.release_created }}
3232
run: |
3333
git config user.name github-actions[bot]
3434
git config user.email 41898282+github-actions[bot]@users.noreply.github.com
3535
git tag -a common/${{ steps.release-please.outputs.tag_name }} -m "Release common/${{ steps.release-please.outputs.tag_name }}"
36-
git push origin common/${{ steps.release-please.outputs.tag_name }}
36+
git tag -a api/${{ steps.release-please.outputs.tag_name }} -m "Release api/${{ steps.release-please.outputs.tag_name }}"
37+
git push origin {api,common}/${{ steps.release-please.outputs.tag_name }}
3738
3839
- if: ${{ steps.release-please.outputs.release_created }}
3940
name: Run release workflow

capi-runtime-extensions.code-workspace

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@
88
},
99
{
1010
"path": "./common"
11+
},
12+
{
13+
"path": "./api"
1114
}
1215
],
1316
"settings": {

0 commit comments

Comments
 (0)