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 @@ -27,13 +27,14 @@ jobs:
27
27
- uses : actions/checkout@v4
28
28
if : ${{ steps.release-please.outputs.release_created }}
29
29
30
- - name : tag common module
30
+ - name : Tag common and api modules
31
31
if : ${{ steps.release-please.outputs.release_created }}
32
32
run : |
33
33
git config user.name github-actions[bot]
34
34
git config user.email 41898282+github-actions[bot]@users.noreply.github.com
35
35
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 }}
37
38
38
39
- if : ${{ steps.release-please.outputs.release_created }}
39
40
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