Skip to content

Commit

Permalink
Replace printf
Browse files Browse the repository at this point in the history
  • Loading branch information
projkov authored Jan 22, 2025
1 parent 17d4642 commit b032b31
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/publish-gem.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ jobs:
RUBYGEMS_API_KEY: ${{ secrets.RUBYGEMS_API_KEY }}
run: |
mkdir -p ~/.gem
printf "---\n:rubygems_api_key: ${RUBYGEMS_API_KEY}\n" > ~/.gem/credentials
echo "---" > ~/.gem/credentials
echo ":rubygems_api_key: ${RUBYGEMS_API_KEY}" >> ~/.gem/credentials
chmod 0600 ~/.gem/credentials
- name: Build gem
run: gem build *.gemspec
Expand Down

0 comments on commit b032b31

Please sign in to comment.