File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -23,13 +23,14 @@ jobs:
23
23
- uses : actions/checkout@v4
24
24
if : ${{ steps.release-please.outputs.release_created }}
25
25
26
- - name : tag common module
26
+ - name : Tag common and api modules
27
27
if : ${{ steps.release-please.outputs.release_created }}
28
28
run : |
29
29
git config user.name github-actions[bot]
30
30
git config user.email 41898282+github-actions[bot]@users.noreply.github.com
31
31
git tag -a common/${{ steps.release-please.outputs.tag_name }} -m "Release common/${{ steps.release-please.outputs.tag_name }}"
32
- git push origin common/${{ steps.release-please.outputs.tag_name }}
32
+ git tag -a api/${{ steps.release-please.outputs.tag_name }} -m "Release api/${{ steps.release-please.outputs.tag_name }}"
33
+ git push origin {api,common}/${{ steps.release-please.outputs.tag_name }}
33
34
34
35
- if : ${{ steps.release-please.outputs.release_created }}
35
36
name : Run release workflow
Original file line number Diff line number Diff line change 8
8
},
9
9
{
10
10
"path" : " ./common"
11
+ },
12
+ {
13
+ "path" : " ./api"
11
14
}
12
15
],
13
16
"settings" : {
You can’t perform that action at this time.
0 commit comments