From ec54a8933b9dd0f56e0fa0b7ebb8b00b330e65a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Ch=C4=99ci=C5=84ski?= Date: Tue, 12 Mar 2024 11:13:01 +0100 Subject: [PATCH] [DEVOPS-1750] Fix Go release artifacts (#655) ## Type of change ``` - [x] Bug fix - [ ] New feature development - [ ] Tech debt (refactoring, code cleanup, dependency upgrades, etc) - [x] Build/deploy pipeline (DevOps) - [ ] Other ``` ## Objective Fix version reference in release artifacts in Go release workflow. ## Code changes - **.github/workflows/release-go.yml:** Fix version reference in release artifacts ## Before you submit - Please add **unit tests** where it makes sense to do so --- .github/workflows/release-go.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release-go.yml b/.github/workflows/release-go.yml index cc17a4905..c7a198056 100644 --- a/.github/workflows/release-go.yml +++ b/.github/workflows/release-go.yml @@ -210,7 +210,7 @@ jobs: draft: true repo: sm-sdk-go owner: bitwarden - artifacts: "libbitwarden_c_files-x86_64-apple-darwin-$_PKG_VERSION.zip, - libbitwarden_c_files-aarch64-apple-darwin-$_PKG_VERSION.zip, - libbitwarden_c_files-x86_64-unknown-linux-gnu-$_PKG_VERSION.zip, - libbitwarden_c_files-x86_64-pc-windows-msvc-$_PKG_VERSION.zip" + artifacts: "libbitwarden_c_files-x86_64-apple-darwin-${{ env._PKG_VERSION }}.zip, + libbitwarden_c_files-aarch64-apple-darwin-${{ env._PKG_VERSION }}.zip, + libbitwarden_c_files-x86_64-unknown-linux-gnu-${{ env._PKG_VERSION }}.zip, + libbitwarden_c_files-x86_64-pc-windows-msvc-${{ env._PKG_VERSION }}.zip"