Skip to content

Commit f3868b9

Browse files
committed
🐛 fix golang packaging bug
1 parent 4a3ee46 commit f3868b9

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

continuous_delivery_scripts/plugins/golang.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ def get_version_tag(self, version: str):
128128

129129
def package_software(self, mode: CommitType, version: str) -> None:
130130
"""No operation."""
131-
super().package_software(version)
131+
super().package_software(mode, version)
132132
_call_goreleaser_check(version)
133133

134134
def release_package_to_repository(self, mode: CommitType, version: str) -> None:

news/20221223153606.bugfix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
:bug: fix bug introduced in `golang` plugin

0 commit comments

Comments
 (0)