Skip to content

Commit f8299e2

Browse files
author
Jaymala
authored
Fix release workflows to support latest bob CLI (#80)
Signed-off-by: Jaymala Sinha <[email protected]>
1 parent 1c09455 commit f8299e2

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

.github/workflows/create_release.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,11 @@ jobs:
5353

5454
# Use bob to download artifacts from Artifactory
5555
- name: Download artifacts
56+
env:
57+
BOB_ARTIFACTORY_TOKEN: ${{ secrets.QUALITY_TEAM_ARTIFACTORY_TOKEN }}
58+
BOB_ARTIFACTORY_USER: ${{ secrets.QUALITY_TEAM_ARTIFACTORY_USER }}
5659
run: |
5760
bob download artifactory \
58-
-token=${{ secrets.QUALITY_TEAM_ARTIFACTORY_TOKEN }} \
59-
-user=${{ secrets.QUALITY_TEAM_ARTIFACTORY_USER }} \
6061
-channel ${{ env.CHANNEL }} \
6162
-commit=${{ env.SHA }} \
6263
-product-name=${{ env.PRODUCT }} \

.github/workflows/update_homebrew_formula.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,10 +64,11 @@ jobs:
6464

6565
# Use bob to download SHA256SUMS file from Artifactory
6666
- name: Download artifacts
67+
env:
68+
BOB_ARTIFACTORY_TOKEN: ${{ secrets.QUALITY_TEAM_ARTIFACTORY_TOKEN }}
69+
BOB_ARTIFACTORY_USER: ${{ secrets.QUALITY_TEAM_ARTIFACTORY_USER }}
6770
run: |
6871
bob download artifactory \
69-
-token=${{ secrets.ARTIFACTORY_TOKEN }} \
70-
-user=${{ secrets.ARTIFACTORY_USER }} \
7172
-channel ${{ inputs.channel }} \
7273
-commit=${{ inputs.sha }} \
7374
-product-name=${{ inputs.product }} \

0 commit comments

Comments
 (0)