Skip to content

feat: allow GEM_HOST_API_KEY to be used for any gemHost #26

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/publish.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ module.exports = async function publish(
) {
if (gemPublish !== false) {
logger.log(`Publishing version ${version} to gem server`);
const args = ['push', gemFile, '--config-file', credentialsFile];
const args = ['push', gemFile, '--config-file', credentialsFile, '--key', 'api_key'];
if (gemHost) {
args.push('--host', gemHost);
}
Expand Down
3 changes: 1 addition & 2 deletions src/verifyConditions.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,7 @@ You can retrieve an API key either from your \`~/.gem/credentials\` file or in y

await writeFile(
credentialsFile,
// TODO: Handle other hosts
`---\n:rubygems_api_key: ${env.GEM_HOST_API_KEY}`,
`---\n:api_key: ${env.GEM_HOST_API_KEY}`,
'utf8',
);
};
Expand Down