Skip to content

Commit

Permalink
adjust
Browse files Browse the repository at this point in the history
  • Loading branch information
zmariscal-ut committed Nov 6, 2023
1 parent 0d2eac9 commit 27ac18e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/publish_gem.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ jobs:
mkdir -p $HOME/.gem
touch $HOME/.gem/credentials
chmod 0600 $HOME/.gem/credentials
printf -- "---\n:github: ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials
printf -- "---\n:github: Bearer ${GH_PACKAGES_TEMP_TOKEN}\n" > $HOME/.gem/credentials
gem build *.gemspec
gem push -V --KEY github --host https://rubygems.pkg.github.com/${OWNER} *.gem
gem push --verbose --key github --host https://rubygems.pkg.github.com/${OWNER} *.gem
env:
GH_PACKAGES_TEMP_TOKEN: "Bearer ${{secrets.GH_PACKAGES_TEMP_TOKEN}}"
OWNER: "UserTestingEnterprise"
GH_PACKAGES_TEMP_TOKEN: ${{ secrets.GH_PACKAGES_TEMP_TOKEN }}
OWNER: ${{ github.repository_owner }}
continue-on-error: true

0 comments on commit 27ac18e

Please sign in to comment.