Skip to content

Commit

Permalink
Add GEM_HOME and GEM_BIN to PATH
Browse files Browse the repository at this point in the history
  • Loading branch information
mesaugat committed May 3, 2024
1 parent 27066c4 commit 08c27a9
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/build-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,11 @@ jobs:
gem --version
- name: Install GitHub changelog generator
run: gem install github_changelog_generator
run: |
gem install github_changelog_generator --user-install
echo GEM_HOME=$HOME/.gem >> $GITHUB_ENV
echo GEM_PATH=$HOME/.gem >> $GITHUB_ENV
echo "PATH=$HOME/.gem/bin:$PATH" >> $GITHUB_ENV
- name: Run release script
run: ./release.sh compare_and_release
Expand Down

0 comments on commit 08c27a9

Please sign in to comment.