Skip to content

Commit 0fae89a

Browse files
committed
Fix role arn extraction step
1 parent e826fee commit 0fae89a

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/build-release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,8 +252,9 @@ jobs:
252252
- name: Get role ARN
253253
id: get-role-arn
254254
run: |
255-
role_arn="$(jq -r --arg account_type="${{ matrix.account }}" '.[$account_type]' <<<"$ACCOUNT_ROLE_MAP")"
255+
role_arn="$(jq -r --arg account_type "${{ matrix.account }}" '.[$account_type]' <<<"$ACCOUNT_ROLE_MAP")"
256256
257+
echo "::add-mask::$role_arn"
257258
echo "role-arn=$role_arn" >> "$GITHUB_OUTPUT"
258259
259260
- name: Download jib image artifacts

0 commit comments

Comments
 (0)