Skip to content

Commit 3e03a1f

Browse files
committed
fix: release deployment tags rather than subdir (for Go modules resolution)
1 parent 10313af commit 3e03a1f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/release.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -82,11 +82,11 @@ jobs:
8282
8383
- name: Tag SDK Versions
8484
run: |
85-
git tag -a install/${{ env.REF_NAME }} -m install/${{ env.REF_NAME }}
86-
git tag -a environment/${{ env.REF_NAME }} -m environment/${{ env.REF_NAME }}
85+
git tag -a install/${{ env.REF_NAME }}/deploy -m install/${{ env.REF_NAME }}/deploy
86+
git tag -a environment/${{ env.REF_NAME }}/deploy -m environment/${{ env.REF_NAME }}/deploy
8787
git tag -a webserver/${{ env.REF_NAME }} -m webserver/${{ env.REF_NAME }}
8888
- name: Push to Repository
8989
run: |
90-
git push origin install/${{ env.REF_NAME }}
91-
git push origin environment/${{ env.REF_NAME }}
90+
git push origin install/${{ env.REF_NAME }}/deploy
91+
git push origin environment/${{ env.REF_NAME }}/deploy
9292
git push origin webserver/${{ env.REF_NAME }}

0 commit comments

Comments
 (0)