We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d97a90 commit cd09102Copy full SHA for cd09102
.github/workflows/auto-version-bump.yml
@@ -26,6 +26,15 @@ jobs:
26
RELEASE_BRANCHES: main
27
INITIAL_VERSION: 0.4.0
28
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
+
38
- name: Create GitHub Release
39
uses: ncipollo/release-action@v1
40
with:
0 commit comments