diff --git a/build-pipeline.yml b/build-pipeline.yml
index 98f20d6c7cbe44dcaf144f1b69a165ac5d524247..8aab41bdee1db2982a9477c4752e0c2b202d8fb3 100644
--- a/build-pipeline.yml
+++ b/build-pipeline.yml
@@ -345,12 +345,10 @@ workflow:
         --licenses-dir="${LICENSES_PATH}"
         --doc-dir=.
         --output-dir=release
-        --release-suffix="${RELEASE_SUFFIX}"
     - elif [[ "${PACKAGE_TYPE}" == "sdk" ]]; then
     - .gitlab-ci/scripts/package_release.py
         --sdk-dir="${SDK_PATH}"
         --output-dir=release
-        --release-suffix="${RELEASE_SUFFIX}"
     - fi
   cache:
     - key: ${CI_PIPELINE_ID}-${ASSOCIATED_BUILD_JOB}
diff --git a/scripts/package_release.py b/scripts/package_release.py
index eab676409516f610553f0f3eba4e592278760859..92bc2b1bd0a9997622a300676714a58007c2b6a7 100755
--- a/scripts/package_release.py
+++ b/scripts/package_release.py
@@ -87,11 +87,6 @@ def main():
         action="append",
         required=True,
     )
-    parser.add_argument(
-        "--release-suffix",
-        help="""Suffix to append to the release folder""",
-        dest="release_suffix",
-    )
     args, _ = parser.parse_known_args()
 
     # Get bitbake variables from testdata.json file
@@ -131,10 +126,6 @@ def main():
     else:
         release_name = f"Yocto-{version}"
 
-    # Append release suffix
-    if args.release_suffix is not None:
-        release_name = release_name + args.release_suffix
-
     # Create output directories
     output_dirs = []
     for output_dir in args.output_dir: