Skip to content

Commit cd09102

Browse files
author
Pascal van Leeuwen
committed
Add CI step for tag for Portal DB Go SDK
1 parent 1d97a90 commit cd09102

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/auto-version-bump.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,15 @@ jobs:
2626
RELEASE_BRANCHES: main
2727
INITIAL_VERSION: 0.4.0
2828

29+
- name: Create nested module tag for Portal DB Go SDK
30+
run: |
31+
VERSION="${{ steps.tag_version.outputs.new_tag }}"
32+
NESTED_TAG="portal-db/sdk/go/${VERSION}"
33+
git tag "${NESTED_TAG}"
34+
git push origin "${NESTED_TAG}"
35+
env:
36+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
37+
2938
- name: Create GitHub Release
3039
uses: ncipollo/release-action@v1
3140
with:

0 commit comments

Comments
 (0)