Skip to content

Commit

Permalink
Move add Gem.user_dir to PATH on different step
Browse files Browse the repository at this point in the history
  • Loading branch information
raulcd committed Jul 31, 2023
1 parent b6551be commit 0f34be6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dev/tasks/macros.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,6 @@ on:
- name: Install gemfury client on ARM self-hosted
if: runner.os == 'Linux' && runner.arch != 'X64'
run: |
PATH=$(echo $(ruby -r rubygems -e 'puts Gem.user_dir'))/bin:$PATH
# GH-36692: Pin gemfury due to wrong faraday dependency declaration.
gem install --user-install gemfury -v 0.12.0
- name: Instal gemfury client
Expand All @@ -156,6 +155,7 @@ on:
- name: Upload package to Gemfury
shell: bash
run: |
PATH=$(echo $(ruby -r rubygems -e 'puts Gem.user_dir'))/bin:$PATH
fury push \
--api-token=${CROSSBOW_GEMFURY_TOKEN} \
--as=${CROSSBOW_GEMFURY_ORG} \
Expand Down

0 comments on commit 0f34be6

Please sign in to comment.